$(function() { if ($('#vedioiframe').length > 0) { resetPlaySize('vedioiframe'); } if ($('#videoLive').length > 0) { resetPlaySize('videoLive'); } if ($('#video').length > 0) { resetPlaySize('video'); } if ($('.novel-wrap').length > 0) { $('.novel-wrap').find('p').css('width', '100%'); $('.novel-wrap').find('div').css('width', '100%'); $('.novel-wrap').find('span').css('width', 'auto'); $('.novel-wrap').find('*').attr('style', ''); $('.novel-wrap').find('*').css('padding', ''); $('.novel-wrap').find('*').css('margin', ''); $('.novel-wrap').find('*').css('font-size', '1.35rem'); $('.novel-wrap').find('*').css('font-weight', '400'); $('.novel-wrap').find('*').css('line-height', '180%'); $('.novel-wrap').find('*').css('text-align', 'left'); $('.novel-wrap').find('*').css('text-indent', '2.7rem'); $('.novel-wrap').find('*').css('background', ''); } if ($('.images-wrap').length > 0) { $('.images-wrap').find('p').css('width', '100%'); $('.images-wrap').find('div').css('width', '100%'); $('.images-wrap').find('span').css('width', 'auto'); $('.images-wrap').find('*').css('background', ''); $('.images-wrap').find('*').attr('style', ''); $('.images-wrap').find('*').css('padding', ''); $('.images-wrap').find('*').css('margin', ''); } }); function resetPlaySize(id) { var resizeVedio = function() { $('#' + id).css('width', "100%"); var vwidth = $('#' + id).css('width'); $('#' + id).css('height', 9 / 16 * parseInt(vwidth) + "px"); }; $(window).bind('resize', function() { resizeVedio(); }); resizeVedio(); }