티스토리 뷰

$(document).ready(function(e){
    var wWidth = $(window).innerWidth();
    if(wWidth < 1400 && wWidth > 1024){
        $('.video-con > iframe').load(function(e){
            var videoHeight = $('.video-wrap .video-con iframe').height();
            $('.sponsor-rolling-wrap').height(videoHeight);
        });
    }else if(wWidth < 1024){
        $('.sponsor-rolling-wrap').height('');
    }else{
        $('.video-con > iframe').load(function(e){
            var videoHeight = $('.video-wrap  .video-con iframe').height();
            $('.sponsor-rolling-wrap').height(videoHeight);
        });
    }

    $(window).resize(function(e){
        var wWidth = $(window).innerWidth();

        if(wWidth < 1400 && wWidth > 1024){
            var videoHeight = $('.video-wrap .video-con iframe').height();
            $('.sponsor-rolling-wrap').height(videoHeight);
        }else if(wWidth < 1024){
            $('.sponsor-rolling-wrap').height('');
        }else{
            var videoHeight = $('.video-wrap  .video-con iframe').height();
            $('.sponsor-rolling-wrap').height(videoHeight);
        }
    });

    sponsorRolling();
    subTab();
    channelTab();
    selCategory();
});
공지사항