뚜뚜월드 :: 유튜브 크기 자동조절 가로 100% (꽉 채우기)

뚜뚜월드

뚜뚜월드
유튜브 크기 자동조절 가로 100% (꽉 채우기)
300x250
반응형

<script>
$(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>

300x250
반응형

댓글

빠른이동모음 " 드랍박스 빠르게 최적화 연구중 !"