Display fallback image even if the browser supports html5 video
问题 This might sound strange, but can I still display fallback image in that case? Since video elements in mobile (Android & iOS) will open its native video player app when clicked, I want to show GIF version of the video (which I will place as the fallback image) for Android & iOS. I know how to detect whether the browser is mobile or not via Javascript, I just need some advice on best practice. What I'm doing <video> <source mp4> <source ogg> <source webm> <img src="*.gif"> </video> Then in the