No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autoScroll.js 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /**
  2. * Name : 循环滚动列表
  3. * Author :子纯
  4. * Time :2015-12-15
  5. **/
  6. (function(jQuery){
  7. $.fn.autoScroll = function (o) {
  8. o = $.extend({ //设置默认参数
  9. direction: 'left',
  10. interval: null,
  11. speed: null,
  12. distance: null,
  13. liWidth: null,
  14. liHeight: null,
  15. showNum: null
  16. },o || {});
  17. return this.each(function(){ //回调开始
  18. var $ts = $(this),
  19. $ul = $ts.children("ul"),
  20. $li = $ul.children("li"),
  21. len = $li.length;
  22. if (o.direction == 'up' || o.direction == 'down' ){ //根据类型设置css
  23. $ts.css({ "width": "100%", "height": o.showNum * o.liHeight });
  24. $ul.css({ "width": "100%", "height": len * o.liHeight });
  25. $li.css({ "float": "none", "width": "100%", "height": o.liHeight, "margin": 0,"padding": 0 });
  26. };
  27. if (o.direction == 'left' || o.direction == 'right' ){ //其实也可以在css里写好
  28. $ts.css({ "width": o.showNum * o.liWidth });
  29. $ul.css({ "width": len * o.liWidth });
  30. $li.css({ "float": "left" });
  31. };
  32. switch (o.direction){ //分四种情况,进行事件调用
  33. case 'left': sroLeft();
  34. break;
  35. case 'right':sroRight();
  36. break;
  37. case 'up': sroUp();
  38. break;
  39. case 'down': sroDown();
  40. break;
  41. };
  42. function sroLeft(){ //向左滚动事件
  43. $ul.css("left", 0);
  44. var left;
  45. function leftMoving(){
  46. var dis = -o.distance,
  47. dif = -o.liWidth * (len - o.showNum);
  48. left = parseFloat($ul.css("left"));
  49. if (left <= dif){
  50. $ul.css("left",0);
  51. left = 0;
  52. $ul.delay(o.interval);
  53. };
  54. var ltDis = left + dis;
  55. if(ltDis <= dif){
  56. ltDis = dif;
  57. };
  58. $ul.animate({"left":ltDis+"px"}, o.speed);
  59. };
  60. $ul.hover( //鼠标移上、移下的阻止与恢复滚动
  61. function(){
  62. clearInterval(fnLeft);
  63. },
  64. function(){
  65. fnLeft = setInterval(function(){leftMoving()}, o.interval);
  66. }
  67. );
  68. fnLeft = setInterval(function(){leftMoving()}, o.interval);
  69. };
  70. function sroRight(){ //向右滚动事件
  71. $ul.css("right", 0);
  72. var right;
  73. function rightMoving(){
  74. var dis = -o.distance,
  75. dif = -o.liWidth * (len - o.showNum);
  76. right = parseFloat($ul.css("right"));
  77. if (right <= dif){
  78. $ul.css("right",0);
  79. right = 0;
  80. $ul.delay(o.interval);
  81. };
  82. var rtDis = right + dis;
  83. if(rtDis <= dif){
  84. rtDis = dif;
  85. };
  86. $ul.animate({"right":rtDis+"px"}, o.speed);
  87. };
  88. $ul.hover(
  89. function(){
  90. clearInterval(fnRight);
  91. },
  92. function(){
  93. fnRight = setInterval(function(){rightMoving()}, o.interval);
  94. }
  95. );
  96. fnRight = setInterval(function(){rightMoving()}, o.interval);
  97. };
  98. function sroUp(){ //向上滚动事件
  99. $ul.css("top", 0);
  100. var top;
  101. function upMoving(){
  102. var dis = -o.distance,
  103. dif = -o.liHeight * (len - o.showNum);
  104. top = parseFloat($ul.css("top"));
  105. if (top <= dif){
  106. $ul.css("top",0);
  107. top = 0;
  108. $ul.delay(o.interval);
  109. };
  110. var tpDis = top + dis;
  111. if(tpDis <= dif){
  112. tpDis = dif;
  113. };
  114. $ul.animate({"top":tpDis+"px"}, o.speed);
  115. };
  116. $ul.hover(
  117. function(){
  118. clearInterval(fnUp);
  119. },
  120. function(){
  121. fnUp = setInterval(function(){upMoving()}, o.interval);
  122. }
  123. );
  124. fnUp = setInterval(function(){upMoving()}, o.interval);
  125. };
  126. function sroDown(){ //向下滚动事件
  127. $ul.css("bottom",0);
  128. var bottom;
  129. function downMoving(){
  130. var dis = -o.distance,
  131. dif = -o.liHeight * (len - o.showNum);
  132. bottom = parseFloat($ul.css("bottom"));
  133. if (bottom <= dif){
  134. $ul.css("bottom",0);
  135. bottom = 0;
  136. $ul.delay(o.interval);
  137. };
  138. var bmDis = bottom + dis;
  139. if(bmDis <= dif){
  140. bmDis = dif;
  141. };
  142. $ul.animate({"bottom":bmDis+"px"}, o.speed);
  143. };
  144. $ul.hover(
  145. function(){
  146. clearInterval(fnDown);
  147. },
  148. function(){
  149. fnDown = setInterval(function(){downMoving()}, o.interval);
  150. }
  151. );
  152. fnDown = setInterval(function(){downMoving()}, o.interval);
  153. };
  154. });
  155. };
  156. })(jQuery);