WebPublisher
[jQuery] 높이값 받아와서 롤링배너 높이값 지정
amanda
2021. 3. 24. 17:38
$(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();
});