Good day. I am currently working on a hybrid app using framework7 which has an html5 video. The video works fine and loads just ok but whenever the video goes on fullscreen or the controls disappear from the video player interface it wont show up again when I press the video playing. I am using <video width="100%" height="auto" controls </video>
. Would there be a way to fix this or is this a limitation on the hybrid app itself? Thank you for your help.
Asked
Active
Viewed 829 times
1

dze
- 21
- 4
-
You should close your html tags `` – Hokusai Jan 10 '17 at 11:18
-
sorry that was just a typo with the closing on the video tag. I wrote it the same way that you did but still the same problem – dze Jan 10 '17 at 23:23
1 Answers
3
That issue is caused by fastclick. Add class no-fastclick to your video tag and it will solve your issue.

paradox37
- 435
- 5
- 17
-
2If I could upvote you a hundred thousand times I would. This killed me for going on 2 weeks now. I thought it was a Cordova/PhoneGap issue for the longest time. Thank you! – dChimento Feb 24 '17 at 00:12
-
1Thank you! This totally solved the problem of playing video. The video could seek to different times, but it wouldn't play. Ref: https://framework7.io/docs/fast-clicks.html – Jim Bergman Jul 24 '18 at 17:53