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

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 { border: 0px; }  
  3. .bannerbox { width: 320px; height: 150px; overflow: hidden; margin: 0px auto; }  
  4. #focus { width: 320px; height: 150px; clear: both; overflow: hidden; position: relative; float: left; }  
  5.     #focus ul { width: 320px; height: 150px; float: left; position: absolute; clear: both; padding: 0px; margin: 0px; }  
  6.         #focus ul li { float: left; width: 320px; height: 150px; overflow: hidden; position: relative; padding: 0px; margin: 0px; }  
  7.     #focus .preNext { width: 250px; height: 150px; position: absolute; top: 0px; cursor: pointer; }  
  8.     #focus .pre { left: 0; background: url(../images/sprite.png) no-repeat left center; }  
  9.     #focus .next { rightright: 0; background: url(../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(true, false).animate({ "opacity": "0.5" }, 300);  
  19.     }, function () {  
  20.         $(this).stop(true, false).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(true, false).animate({ "left": nowLeft }, 300);  
  45.         $("#focus .btn span").stop(true, false).animate({ "opacity": "0.4" }, 300).eq(index).stop(true, false).animate({ "opacity": "1" }, 300);  
  46.     }  
  47. });  


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

相关推荐