标签: jquery html5-video
如何将视频暂停一段时间(如2或3秒)并继续使用jQuery播放?
答案 0 :(得分:0)
setTimeout(function(){ $('yourVideoElementSelector')[0].play(); },2000);
你的意思是这样的机会吗?
或者你的意思是暂停播放视频?
$('yourselector')[0].pause(); setTimeout(function(){ $('yourselector')[0].play();}, 2000);