jquery(function($){ var is_mobile = /android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.useragent); if(is_mobile) { $('body').addclass('is-mobile'); $('#c_ads_banner-15397791271841799 video').remove(); } $(window).resize(function(){ var window_width = $(window).width(), window_height = $(window).height(), video_width = 1280, video_height = 720, new_video_width = window_width, new_video_height = video_height * window_width / video_width, position_top = (window_height - new_video_height) / 2; position_left = 0; if(new_video_height < window_height) { new_video_height = window_height; new_video_width = video_width * window_height / video_height; position_top = 0; position_left = (window_width - new_video_width) / 2; } if(!is_mobile) { $('#c_ads_banner-15397791271841799, #c_ebizads_banner-1540185562349 video').css({ height: new_video_height, width: new_video_width, left: position_left, top: position_top }); $('#c_ads_banner-15397791271841799 video').attr('width', new_video_width).attr('height', new_video_height) } $('.fake-slide').css({ height: window_height }); }).trigger('resize'); });