본문 바로가기
etc.tip

유튜브 동영상 티스토리 반응형 웹 스킨에 삽입하는 방법

by 짤방장2 2017. 4. 21.
반응형

<script type="text/javascript">
  $(window).resize(function(){resizeYoutube();});
  $(function(){resizeYoutube();});
  function resizeYoutube(){ $("iframe").each(function(){ if( /^https?:\/\/www.youtube.com\/embed\//g.test($(this).attr("src")) ){ $(this).css("width","100%"); $(this).css("height",Math.ceil( parseInt($(this).css("width")) * 480 / 854 ) + "px");} }); }
</script>


html </head>앞에삽입


http://sometimes-n.tistory.com/42

반응형

댓글


top
bottom