Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 날짜변환
- Vanilla JS
- selinux
- 글자 수 제한
- post_type
- php8.3
- 디지털 정부서비스ui/ux
- 글자수제한
- 리사이즈
- 보안인증서
- 애니메이트
- 비동기호출
- JS
- JavaScript
- 구글뷰어
- 301 리다이렉트
- krds
- 정규식
- Ajax
- SSL
- ip직접접근차단
- 우분투 서버세팅
- MySQL
- 날짜비교
- 배열
- 정부 서비스 가이드라인
- 자바스크립트
- virsualhost
- .htaccess
- iframe
Archives
- Today
- Total
더 나은 프로그래머가 되자
유튜브 iframe 영상 제어(재생,일시정지,정지) 본문
<script type="text/javascript">
$(function(){
$("#pause").click(function(){
//playVideo=재생, pauseVideo=일시정지, stopVideo=정지
$("iframe")[0].contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}','*');
});
});
</script>
<iframe width="100%" height="315" src="영상주소?enablejsapi=1&version=3&playerapiid=ytplayer&ecver=2&vq=hd720&rel=0" frameborder="0" allow="accelerometer;encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe>
<button type="type" id="pause">일시정지</button>
출처 : https://kunoo.tistory.com/entry/Tip-Youtube-iframe-%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EC%A0%9C%EC%96%B4
Comments