TODAY / TOTAL

|

movie | drama | site | tip ( m / tu / rr) >> message

2018. 7. 25. 09:26
1
2
3
4
5
<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>
cs


<head>~</head> 사이에 삽입