본문 바로가기

프로그래밍

jquery html 동영상 제어

by ㅇㅇㅁㅅㅅ 2023. 3. 24.

동영상 연속 재생

 

https://fromisnine.tistory.com/77

 

html5 video 태그 여러 개의 비디오를 연속 재생하기

HTML JAVASCRIPT(JQUERY) $(function(){ $("#video1").bind("ended", function() { document.getElementById("video2").play(); }); $("#video2").bind("ended", function() { document.getElementById("video3").play(); }); $("#video3").bind("ended", function() { docume

fromisnine.tistory.com

 

비디오 태그 제어

https://ga-you-ni.tistory.com/127

 

[jQuery]동영상 태그 제어-.load(), .play(), pause()

비디오 태그 제어하는 문법 해당 동영상 참조 : $("video").get(); 동영상 불러오기 : .load(); 재생하기 : .play(); 일시 정지하기 : .pause(); [html] load play pause [js] $(document).ready(function(){ var sample = $("video").get

ga-you-ni.tistory.com

 

html5 video 동영상 제어

https://blog.naver.com/wind_s01/222012100077

 

[jQuery] HTML5 VIDEO 동영상 제어

html5 video 태그를 이용하면 IE9 이상 거의 모든 브라우저에서 동영상을 보여줄 수 있다. video 태그 브...

blog.naver.com

 

스크롤 동작시 비디오 재생

https://homzzang.com/b/jquery-314

 

홈짱닷컴

홈페이지 제작, 그누보드 강의, 웹코딩, HTML, CSS, JAVASCRIPT, JQUERY, PHP, SQL

homzzang.com

 

 

반응형

댓글