//rem瀛椾綋澶勭悊 !(function (doc, win) { var el = doc.documentElement; //resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize'; function setSize() { var w = el.clientWidth; if (!w) return; w=w>480?480:w; w=w<320?320:w; el.style.fontSize = (100 * (w / 1080)).toFixed(3) + 'px'; } if (!doc.addEventListener) return; setSize(); win.addEventListener('resize', setSize, false); win.addEventListener('pageshow', function(e) { if (e.persisted) { setSize(); } }, false); })(document, window); $().ready(function(e) { $(".nyNavBox a").click(function(e) { $(this).toggleClass("cur"); $(".nyNavList").slideToggle(); }); //鍘婚櫎鍖呭惈format瀛楃鐨勬牱寮忚〃 $("link").each(function(index, element) { if($(this).attr("href").indexOf('format') > -1){ $(this).remove(); } }); $("table").each(function(){ $(this).wrapAll("
") }); $(".articleCon img").removeAttr("width height style"); heightAutoSize(); setVideo(); }); //绐楀彛澶у皬鏀瑰彉鏃朵簨鎯 $(window).resize(function(){ heightAutoSize(); }); function heightAutoSize(){ var h = $(window).height(); $(".ny").css("min-height",h - $(".nyMenu").outerHeight(true) - $(".copyright").outerHeight(true)); if($(".ny").hasClass("nyNotice")){ $(".ny").css("min-height",h - $(".nyMenu").outerHeight(true) - $(".copyright").outerHeight(true) - $(".ny").outerHeight(true) + $(".ny").height()); } } function setVideo(){ //濡傛灉鏄墜鏈猴紝璋冩暣 if(navigator.userAgent.match(/mobile/i)!=null){ var W = $(".article").width(); var H = parseInt(W*.75); $("object embed, video, div[id^=mediaContent]").width(W).height(H); $("video").attr({ "x5-video-player-fullscreen":true, "webkit-playsinline":true, "x-webkit-airplay":true, "playsinline":true, "x5-playsinline":true }) } }