var img_a = $(".y_slider_box a"); var nums = $(".y_m_title a"); var m = 0; function imgs_change(){ m++; if(m>($(img_a).length-1)){ m=0; } $(nums).removeClass("y_n_bg"); $(img_a).hide(); $(nums).eq(m).addClass("y_n_bg"); $(img_a).eq(m).fadeIn(800); } gap = setInterval(imgs_change,5000); $(nums).each(function(k){ $(this).mouseover(function(){ clearInterval(gap); $(nums).removeClass("y_n_bg"); $(img_a).hide(); $(this).addClass("y_n_bg"); $(img_a).eq(k).stop(true,true).fadeIn(800); m = k; }).mouseout(function(){ gap = setInterval(imgs_change,5000); }) }) $(img_a).mouseover(function(){ clearInterval(gap); }).mouseout(function(){ gap = setInterval(imgs_change,5000); }) //上一张 // $(prev).click(function(){ // m--; // if(m<0){ // m=4; // } // $(nums).removeClass("y_n_bg"); // $(img_a).hide(); // $(nums).eq(m).addClass("y_n_bg"); // $(img_a).eq(m).fadeIn(400); // }) //下一张 // $(next).click(function(){ // m++; // if(m>($(img_a).length-1)){ // m=0; // } // $(nums).removeClass("y_n_bg"); // $(img_a).hide(); // $(nums).eq(m).addClass("y_n_bg"); // $(img_a).eq(m).fadeIn(400); // })
//弹窗提示 $(".intips").click(function(){ $(".mod_pop_mask").show(); $(".tips_box").show(); }); //弹窗关闭 $(".btn_close").click(function(){ $(".tips_box").hide(); $(".mod_pop_mask").hide(); }); $(function(){ var aImg = $('.yxjt_ti>li'); //图像集合 var iSize = aImg.size(); //图像个数 var index8 = 0; //切换索引 var t; $('#y_btn_left').click(function(){ //左边按钮点击 index8--; if(index8<0){ index8=iSize-1 } change(index8) }) $('#y_btn_right').click(function(){ //右边按钮点击 index8++; if(index8>iSize-1){ index8=0 } change(index8) }) //切换过程 function change(index8){ aImg.stop(); //隐藏除了当前元素,所以图像 aImg.eq(index8).siblings().animate({ opacity:0 },100).hide() //显示当前图像 aImg.eq(index8).animate({ opacity:1 },100).fadeIn(1000); } function autoshow() { index8=index8+1; if(index8<=iSize-1){ change(index8); }else{ index8=0; change(index8); } } int=setInterval(autoshow,4000); function clearInt() { $('.yxjt_ti>li').mouseover(function() { clearInterval(int); }) } function setInt() { $('.yxjt_ti>li').mouseout(function() { int=setInterval(autoshow,4000); }) } clearInt(); setInt(); })
(function(){ var src = (document.location.protocol == "http:") ? "http://js.passport.qihucdn.com/11.0.1.js?3b7996252475119608d242daf17c5387":"https://jspassport.ssl.qhimg.com/11.0.1.js?3b7996252475119608d242daf17c5387"; document.write('<\/script>'); })();