// JavaScript Document $('#nav-menu .menu > li').hover(function(){ $(this).find('.children').animate({ opacity:'show', height:'show' },200); $(this).find('.xialaguang').addClass('navhover'); }, function() { $('.children').stop(true,true).hide(); $('.xialaguang').removeClass('navhover'); }); //幻灯片 jQuery(".fullSlide").hover(function() { jQuery(this).find(".prev,.next").stop(true, true).fadeTo("show", 0.5) }, function() { jQuery(this).find(".prev,.next").fadeOut() }); jQuery(".fullSlide").slide({ titCell: ".hd ul", mainCell: ".bd ul", effect: "fold", autoPlay: true, autoPage: true, trigger: "click", startFun: function(i) { var curLi = jQuery(".fullSlide .bd li").eq(i); if ( !! curLi.attr("_src")) { curLi.css("background-image", curLi.attr("_src")).removeAttr("_src") } } }); //导航 $(function(){ var nav=$(".head"); //寰楀埌瀵艰埅瀵硅薄 var win=$(window); //寰楀埌绐楀彛瀵硅薄 var sc=$(document);//寰楀埌document鏂囨。瀵硅薄銆� win.scroll(function(){ if(sc.scrollTop()>770){ nav.addClass("sfixed"); }else{ nav.removeClass("sfixed"); } }); }); //下拉跳转 function GoToWhere(s) { var d = s.options[s.selectedIndex].value; window.open(d, "_blank"); s.selectedIndex=0; }