首页>>焦点图>>jquery左右滚动焦点图banner图片,鼠标经过显示上下页(2013-10-03)

jquery左右滚动焦点图banner图片,鼠标经过显示上下页

 适合宽和高都比较大的页面使用

jquery左右滚动焦点图banner图片,鼠标经过显示上下页
赞赏支持
立刻微信赞赏支持 关闭

 

XML/HTML Code
  1. <div class="bannerbox">  
  2.     <div id="focus">  
  3.         <ul>  
  4.             <li><a href="http://www.freejs.net/" target="_blank">  
  5.                 <img src="../dandong.png" alt="" /></a></li>  
  6.             <li><a href="http://www.freejs.net/" target="_blank">  
  7.                 <img src="../mohe.png" alt="" /></a></li>  
  8.             <li><a href="http://www.freejs.net/" target="_blank">  
  9.                 <img src="../changbaishan.png" alt="" /></a></li>  
  10.             <li><a href="http://www.freejs.net/" target="_blank">  
  11.                 <img src="../erlianhaote.png" alt="" /></a></li>  
  12.         </ul>  
  13.     </div>  
  14. </div>  
CSS Code
  1. @charset "utf-8";  
  2. img { border0px; }  
  3. .bannerbox { width320pxheight150pxoverflowhiddenmargin0px auto; }  
  4. #focus { width320pxheight150pxclearbothoverflowhiddenpositionrelativefloatleft; }  
  5.     #focus ul { width320pxheight150pxfloatleftpositionabsoluteclearbothpadding0pxmargin0px; }  
  6.         #focus ul li { floatleftwidth320pxheight150pxoverflowhiddenpositionrelativepadding0pxmargin0px; }  
  7.     #focus .preNext { width250pxheight150pxpositionabsolutetop0pxcursorpointer; }  
  8.     #focus .pre { left: 0; backgroundurl(../images/sprite.png) no-repeat left center; }  
  9.     #focus .next { rightright: 0; backgroundurl(../images/sprite1.png) no-repeat rightright center; }  

js文件

 

JavaScript Code
  1. $(function () {  
  2.     var sWidth = $("#focus").width();  
  3.     var len = $("#focus ul li").length;  
  4.     var index = 0;  
  5.     var picTimer;  
  6.     var btn = "<div class='btnBg'></div><div class='btn'>";  
  7.     for (var i = 0; i < len; i++) {  
  8.         btn += "<span></span>";  
  9.     }  
  10.     btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";  
  11.     $("#focus").append(btn);  
  12.     $("#focus .btnBg").css("opacity", 0);  
  13.     $("#focus .btn span").css("opacity", 0.4).mouseenter(function () {  
  14.         index = $("#focus .btn span").index(this);  
  15.         showPics(index);  
  16.     }).eq(0).trigger("mouseenter");  
  17.     $("#focus .preNext").css("opacity", 0.0).hover(function () {  
  18.         $(this).stop(truefalse).animate({ "opacity""0.5" }, 300);  
  19.     }, function () {  
  20.         $(this).stop(truefalse).animate({ "opacity""0" }, 300);  
  21.     });  
  22.     $("#focus .pre").click(function () {  
  23.         index -= 1;  
  24.         if (index == -1) { index = len - 1; }  
  25.         showPics(index);  
  26.     });  
  27.     $("#focus .next").click(function () {  
  28.         index += 1;  
  29.         if (index == len) { index = 0; }  
  30.         showPics(index);  
  31.     });  
  32.     $("#focus ul").css("width", sWidth * (len));  
  33.     $("#focus").hover(function () {  
  34.         clearInterval(picTimer);  
  35.     }, function () {  
  36.         picTimer = setInterval(function () {  
  37.             showPics(index);  
  38.             index++;  
  39.             if (index == len) { index = 0; }  
  40.         }, 2800);  
  41.     }).trigger("mouseleave");  
  42.     function showPics(index) {  
  43.         var nowLeft = -index * sWidth;  
  44.         $("#focus ul").stop(truefalse).animate({ "left": nowLeft }, 300);  
  45.         $("#focus .btn span").stop(truefalse).animate({ "opacity""0.4" }, 300).eq(index).stop(truefalse).animate({ "opacity""1" }, 300);  
  46.     }  
  47. });  

 


原文地址:http://www.freejs.net/article_jiaodiantu_53.html