- 정보공유
[퍼블리싱] 유튜브 동영상 반응형 처리 (리사이징)
<script type="text/javascript">
$(window).resize(function(){
resizeYoutube();
});
$(function(){
resizeYoutube();
});
function resizeYoutube(){ $("#wr_vod iframe").each(function(){
$(this).css('width','100%');
$(this).css('height',Math.ceil( parseInt($(this).css('width')) * 480 / 854 ) + "px");
});
}
</script>