// javascript document $(function(){ //header // $(".menucon").hover(function(){ // $(".smenu").stop().animate({height:"326px"}, 300); // },function(){ // $(".smenu").stop().animate({height:"0"}, 300); // }); // $(".smenu").hover(function() { // $(this).stop().animate({height:"326px"}, 300); // }, function() { // $(this).stop().animate({height:"0"}, 300); // }) $(".menucon li").hover(function(){ $(this).children("a").addclass("active"); $(this).children(".semenubox").stop().animate({height: 200},400); },function(){ $(this).children("a").removeclass("active"); $(this).children(".semenubox").stop().animate({height: 0},400); }); //返回顶部 if($(window).scrolltop() > 500){$("#backtop").show()}; $(window).scroll(function(){ if( $(window).scrolltop() > 500){ $("#backtop").show() }else{ $("#backtop").hide() } }); $("#backtop").click(function(){ $('html,body').animate({'scrolltop':0},600); }); });