inside.js 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. $(function(){
  2. var bWidth = $("#list_focus").width(); //获取banner宽度
  3. var picNumber = $("#list_focus .img_list li").length; //获取图片张数
  4. var index = 1;
  5. var picTimer;
  6. $("#list_focus .img_list").css("width",bWidth*picNumber); //设置图片列表的宽度
  7. var btn = "<ul class='btn'>"; //构建按钮的DOM
  8. for(var i=0; i < picNumber; i++) {
  9. btn += "<li></li>";
  10. }
  11. btn += "</ul>";
  12. $("#list_focus").append(btn);
  13. $("#list_focus .btn li").mouseenter(function() { //按钮事件
  14. index = $("#list_focus .btn li").index(this);
  15. showPics(index);
  16. }).eq(0).addClass("active");
  17. $("#list_focus").hover(function() { //鼠标划入停止,划出继续动画
  18. clearInterval(picTimer);
  19. $("#list_focus .btn").animate({"bottom":8,"opacity":1},180);
  20. },function() {
  21. $("#list_focus .btn").animate({"bottom":-10,"opacity":0},180);
  22. picTimer = setInterval(function() {
  23. showPics(index);
  24. index++;
  25. if(index == picNumber) {index = 0;}
  26. },4000);
  27. }).trigger("mouseleave");
  28. function showPics(index){ //图片滚动函数
  29. var rollLeft = -index*bWidth;
  30. $("#list_focus .img_list").stop(true,false).animate({"left":rollLeft},300);
  31. $("#list_focus .btn li").removeClass("active").eq(index).addClass("active");
  32. };
  33. });