Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用移动网站。主要概念是视频播放。我使用了 HTML5 视频标签,它在大多数设备上都很舒服,但这些控件在 Android 和 Windows 移动平台上不可见。
HTML:
<video poster="imageURL.jpg" controls> <source src="videoURL.mp4" type="video/mp4" /> </video>
或者让我哪个播放器适合移动网站。
尝试使用此代码。我猜它的工作原理。
<video id="myvideo" poster="imageURL.jpg" controls> <source src="videoURL.mp4" type="video/mp4" /> </video> if (navigator.userAgent.indexOf('Android') >=0) { document.getElementById('myvideo').controls = true; }