$(document).ready(function(){ /*gw:导航条代码*/ $('#index_navbar .Toolbar1 .Menu ul li').mouseenter(function () { var index = $(this).parent().children().index(this); $(this).parent().children().each(function () { if ($(this).hasClass('Select')) { $(this).removeClass('Select'); } }); $(this).addClass('Select'); $('#index_navbar .Toolbar2 .Menu').each(function () { if (!$(this).hasClass('Hide')) { $(this).addClass('Hide'); } }); $('#index_navbar .Toolbar2 .Menu').eq(index).removeClass('Hide'); }); /*gw:最新活动走马灯*/ var czs_rul = $("#index_zxhd ul"); var Allow = true; function CzsLeft(){ if (Allow) { Allow = false; czs_rul.css({marginLeft:-170}).find("li:last").prependTo(czs_rul); czs_rul.animate({marginLeft:"0px"},1000,function(){ Allow = true; }); } } function CzsRight(){ if (Allow) { Allow = false; czs_rul.animate({marginLeft:"-170px"},1000,function(){ czs_rul.css({marginLeft:0}).find("li:first").appendTo(czs_rul); Allow = true; }); } } $(function(){ var czs_auto=setInterval(CzsRight,4000); $("#index_zxhd").hover(function(){clearInterval(czs_auto);},function(){czs_auto=setInterval(CzsRight,4000);}); }); });