Youtube 비디오 플레이어에서 유튜브 로고 제거하기
How to..
☞ 로고가 보이게 할 경우는 속성값 'modestbranding=0' 으로 한다.
- 아이프레임(IFRAME) 버전:
- <iframe width="500" height="300"
src="http://www.youtube.com/embed/abc?modestbranding=1"
frameborder="0" allowfullscreen>
</iframe>
- 구 오브젝트(OBJECT) 버전:
- <object width="500" height="314"> <param name="movie"
value="http://www.youtube.com/v/abc?version=3&rel=0&modestbranding=1">
</param><param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed type="application/x-shockwave-flash" width="500" height="300"
src="http://www.youtube.com/v/abc?version=3&rel=0&modestbranding=1"
allowscriptaccess="always" allowfullscreen="true">
</embed>
</object>