// JavaScript Document $(document).ready(function() { $(".yewu li:eq(2)").attr({"style":"margin-right:0"}) $(".yewu li:eq(5)").attr({"style":"margin-right:0"}) }); $(document).ready(function(e) { $(".nav_box a").click(function(){ $(".nav_box a").removeClass("current"); $(this).addClass("current"); }); $("#service li").hover(function(){ $(this).find('.text:not(:animated)').animate({top:"0px"}, {easing:"easeInOutExpo"}, 600, function(){}); },function () { $(this).find('.text').animate({top:"262px"}, {easing:"easeInOutExpo"}, 600, function(){}); }); }); $(function() { // 返回顶部 $(".top").click(function() { $("html,body").animate({ 'scrollTop': '0px' }, 300) }); }); /*跳转id*/ function goto(obj, hight,urls) { var Otop = $("#" + obj).offset().top; var Stop = Otop + hight; $('body,html').animate({ scrollTop: Stop }, 300) }