/* * @Author: 陈希 * @Date: 2018-03-12 10:09:55 * @Last Modified by: Marte * @Last Modified time: 2018-11-15 12:01:45 */ (function (doc, win) { var docEl = doc.documentElement, resizeEvt = "orientationchange" in window ? "orientationchange" : "resize", recalc = function () { var clientWidth = docEl.clientWidth; if(clientWidth>640) clientWidth = 640; if(clientWidth<414) clientWidth = 320; docEl.style.fontSize = 10 * (clientWidth / 320) + "px"; }; if (!doc.addEventListener) return; win.addEventListener(resizeEvt, recalc, false); doc.addEventListener("DOMContentLoaded", recalc, false); })(document, window); $(function(){ $("header .wrapper>ul>li." + globalNav+" >a").addClass("state"); // if(globalNavTtrue==true){ // $("header .wrapper ol li." + globalNavT+" >a").addClass("state"); // } $("header .wrapper ul li.lang a").click(function(event) { var locations = window.location.href; var newLoc = locations.replace("com/","com/en/"); window.location.href = newLoc; }); }) console.log($(window).width()); function headerDH(){ var timeout = 100; //每隔50ms var i = 0; var addClassOn; addClassOn = setInterval(function(){ if(i >= $("header .wap_wrapper .wap_wrapper_ul li").length){ i = 0; clearInterval(addClassOn); }else{ $('header .wap_wrapper .wap_wrapper_ul li').eq(i++).css({lineHeight:"5rem",opacity:"1"}); } },timeout); } $(".slide_hengBg").click(function(){ // 下拉列表 if($('.wap_wrapper').is(':hidden')){ //如果当前隐藏 $('.wap_wrapper').fadeIn(300); //那么就显示div setTimeout(function(){ headerDH(); }, 300) }else{ $('header .wap_wrapper .wap_wrapper_ul li').css({lineHeight:"4.5rem",opacity:"0"}); setTimeout(function(){ $('.wap_wrapper').fadeOut(300); //就隐藏div }, 300) } // 按钮变换 var $span = $(this).find('span'); if($(this).hasClass("wap_cur")){ $span[0].style.webkitTransform="rotate(0deg)"; $span[0].style.top="0"; $span[2].style.webkitTransform="rotate(0deg)"; $span[2].style.top="1.4rem"; $span[1].style.opacity="1"; $(this).removeClass('wap_cur'); }else{ $span[0].style.webkitTransform="rotate(45deg)"; $span[0].style.top="0.7rem"; $span[2].style.webkitTransform="rotate(-45deg)"; $span[2].style.top="0.7rem"; $span[1].style.opacity="0"; $(this).addClass('wap_cur'); } })