//字体变换 var bodywidth = document.body.clientwidth; if (bodywidth >= 1200) { document.getelementsbytagname("html")[0].style.fontsize = bodywidth / 19.2 + "px"; } else { document.getelementsbytagname("html")[0].style.fontsize = bodywidth / 10 + "px"; } $(window).resize(function() { //屏幕改变 var bodywidth = document.body.clientwidth; if (bodywidth >= 1200) { document.getelementsbytagname("html")[0].style.fontsize = bodywidth / 19.2 + "px"; } }); $(".slide").click(function () { $(this).hide(); }) //手机导航 $(".btn").click(function() { if ($(this).hasclass("cross")) { $(this).removeclass('cross'); $('.wrapper').css({ 'overflow-x': 'hidden'}).animate({ left: '0', }); $('.m-nav').animate({ right: '-150px', width : '0', }); $('.m-top').animate({ left: '0', }); } else { $(this).addclass('cross'); $('.wrapper').css({ 'overflow-x': 'visible'}).animate({ left: '-150px', }); $('.m-nav').animate({ right: '0', width : '150px', }); $('.m-top').animate({ left: '-150px', }); } })