/** * Created by Administrator on 2018/11/14. */ $(function(){ var deviceWidth = document.documentElement.clientWidth; if(deviceWidth > 750) deviceWidth = 750; document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px'; $("body").css("opacity",1); window.onorientationchange=function(){ if(window.orientation==90||window.orientation==-90){ var deviceWidth = document.documentElement.clientWidth; document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px'; }else{ var deviceWidth = document.documentElement.clientWidth; if(deviceWidth > 750) deviceWidth = 750; document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px'; } } }); //字符串转化为json函数代码: function forjson (str) { var json = $.parseJSON(str); return json; } function forstring (json) { var str = JSON.stringify(json); return str; } //footer 下拉菜单 $(".menu-list .menu-down").click(function(){ if($(this).hasClass("active")){ $(this).css("transform","rotate(0deg)").removeClass("active").next().slideUp(); }else{ $(this).css("transform","rotate(180deg)").addClass("active").next().slideDown(); } }); //右侧菜单 $(document).on("click","#right-menu",function(){ $(".fix-menu").removeClass("display-none"); setTimeout(function(){ $(".fix-menu").css("right","0"); },10); setTimeout(function(){ $(".container").addClass("display-none"); },400); }); $(document).on("click","#menu-close",function(){ $(".container").removeClass("display-none"); $(".fix-menu").css("right","-100%"); setTimeout(function(){ $(".fix-menu").addClass("display-none"); },400); });