스크랩/촬영 편집 기술

동영상퍼올때 (크기설정, 자동재생, iframe, embed)

Flyturtle Studio 2015. 5. 21. 09:48
320x100

1. 동영상 크기 맞추기 (PC + 모바일)

<div style="position:relative;width:100%;height:0;padding-bottom:70%">

<iframe style="position:absolute;top:0;left:0" width="100%" height="100%" src="동영상주소" frameborder="no" scrolling="no"></iframe>

</div>



2. embed 자동플레이


<embed src="http://www.youtube.com/v/OG70uXZSQxo?hl=ko_KR&autoplay=1&loop=1&amp;version=2&amp;rel=0" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>





3. iframe 자동플레이

<iframe width="320" height="240" src="http://www.youtube.com/embed/yHfJXxfK5ko" frameborder="0" allowfullscreen="true"></iframe>
 
위 주소 형태에서 embed → v 로 고치고, http 주소 끝부분에 &autoplay=1를 붙여주면 됩니다.

<iframe width="560" height="315" src="http://www.youtube.com/v/yHfJXxfK5ko&autoplay=1" frameborder="0" allowfullscreen="true"></iframe> 





4. 무한반복 
www.youtub 뒤에 -loop 붙이기
<iframe width="230" height="30" src="//www.youtube-loop.com/v/NrhJQBi-p-c?rel=0&amp;autoplay=1" frameborder="0" allowfullscreen="true">






5. 글자에 링크걸기

<a href="주소" >링크명</a>



6. 플래쉬 링크걸기

<embed src=" [플래쉬주소] "> 

<embed src="플래시 주소" width="가로크기" height="세로크기">




320x100