$(function(){ // 入场动画 var wow = new wow({ mobile: false, }); wow.init(); }); // 导航栏 (function(){ $(function(){ $('.menu li').hover( function(){ $(this).find('.sub-menu').stop().slidedown(400); } , function(){ $(this).find('.sub-menu').stop().slideup(200); } ); }); })(); (function(){ $(function(){ //锚点跳转滑动效果 $('a[href*=#]').click(function() { if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { var $target = $(this.hash); $target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']'); if ($target.length) { var targetoffset = $target.offset().top; $('html,body').animate({ scrolltop: targetoffset-150 },1000); return false; } } }); }); })();