Youtube iframe api. How disable touch focus? I need to have the video play immediately and not get a mouse event(click descop and touchmove in mobile).
Asked
Active
Viewed 901 times
1 Answers
0
You can use css (into your iframe parent tag)
{pointer-events: none;}
if you want permanently remove touch move, you can use these class.
if conditionally, you need to work on
detect the video is start point and end point, start point add this class into your parent iframe , when video ended remove the class.
refer would be useful

nisar
- 1,055
- 2
- 11
- 26
-
Sorry, me need disable iframe only event "touch move". – Кирилл Голубев Apr 04 '18 at 14:14