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.
2 秒や 3 秒などの任意の秒数だけビデオを一時停止し、jQuery を使用して再生を続けるにはどうすればよいですか?
setTimeout(function(){ $('yourVideoElementSelector')[0].play(); },2000);
チャンスごとにそのようなことを意味しますか?
それとも、再生中のビデオを一時停止するということですか?
$('yourselector')[0].pause(); setTimeout(function(){ $('yourselector')[0].play();}, 2000);