본문 바로가기
javascript

크롬에서 youtube 자동 재생이 안될때

by 후린트 2018. 12. 5.
반응형

크롬에서 iframe youtube 자동 재생이 안되는 경우가 있다. 


안되는 경우에 allow="autoplay" 를 추가해주면 된다.


<!-- Autoplay is allowed. -->
<iframe src="https://cross-origin.com/myvideo.html" allow="autoplay">

<!-- Autoplay and Fullscreen are allowed. -->
<iframe src="https://cross-origin.com/myvideo.html" allow="autoplay; fullscreen">

출처 : https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#iframe

반응형