개발

[유튜브] 유튜브 자동실행, 플레이 버튼 숨기기

지승준 2015. 2. 7. 00:20

자동실행 : autoplay=1

플레이 버튼 숨기기 : autohide=1


1
2
3
4
5
6
7
8
9
//플레이 버튼 생성
<iframe width="420" height="315" src="https://www.youtube.com
/embed/-_DX3Gpz5pM?autoplay=1&autohide=1" 
frameborder="0" allowfullscreen></iframe>
 
//플레이 버튼 미생성
<iframe width="420" height="315" src="https://www.youtube.com
/apiplayer?video_id=-_DX3Gpz5pM&autoplay=1&autohide=1" 
frameborder="0" allowfullscreen></iframe>
cs