// 导航变化 $(function() { $(".nav.on").hide(); $(window).scroll(function() { if($(document).scrolltop() >= 135) { $(".nav").addclass("on").slidedown(); } else { $(".nav").removeclass("on").slidedown(); } }); }) // 返回顶部按钮 $(function() { $(".backtotop").bind({ "mouseenter": function() { $(this).animate({ "background-position-x": "0px" }, 200); }, "mouseleave": function() { $(".backtotop").stop(true, true); $(this).animate({ "background-position-x": "-58px" }, 200); } }); $(window).bind("scroll", function() { var wtop = $(document).scrolltop(); if (wtop >= 500) { $(".backtotop").fadein(200); } else { $(".backtotop").fadeout(200); } }); $(".backtotop").bind("click", function() { $("html,body").animate({ "scrolltop": "0px" }); }); }); // 移动端导航 $(function(){ $(".mo-nav").click(function(){ $(this).toggleclass("on") $(".navdown").slidetoggle() $(".mask").fadetoggle() }) })