<video controls="controls" autoplay="autoplay" width="100%" height=198 poster="image/xxx.png" runat="server"
id="VideoShow"><source type="video/mp4" src="xxx.mp4"
webkit-playsinline=true>
</video>
iphone5s能自动播放,小米2S,华为M7不能自动播放。
也试过
setTimeout(myfunction(), 1000);
function myfunction()
{
document.getElementById('VideoShow').load();
document.getElementById('VideoShow').pause();
document.getElementById('VideoShow').play();
}
还是没效果
碰到同样问题,楼主解决了没?
楼主解决了吗? 遇到了同样的问题
现在还有个问题 - - MP4格式的URL安卓端根本不能播放 - - iPhone不受影响
安卓可以尝试监听touchstart事件,用户触摸屏幕后自动播放
document.addEventListener(‘touchstart‘, function(){
var video = document.getElementById("ckplayer_a1");
video.play();
}, false);