티스토리 유튜브동영상이 가로크기가 본문에 꽉차게 나오길 바란다면

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>

 

 

헤드위에 넣으세요

 

</head>

300x250
반응형