poposlides.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. * poposliders - v1.0.0 - 2015-06-10
  3. * http://po-po.github.io/
  4. *
  5. * Copyright (c) 2015 popo;
  6. * Licensed under the MIT license
  7. */
  8. (function($) {
  9. $.fn.poposlides = function(options) {
  10. var settings = $.extend({
  11. auto:true, //自动播放
  12. nav:true, //切换按钮
  13. playspeed:3500, //自动播放速度
  14. fadespeed:500, //淡入淡出速度
  15. loop:true, //循环播放
  16. pagination:true, //页码显示
  17. pagecenter:true, //页码居中
  18. prev:".prev", //上一页按钮
  19. next:".next" //下一页按钮
  20. }, options);
  21. return this.each(function() {
  22. var $this = $(this),
  23. slide = $this.children(),
  24. index = 0;
  25. len = slide.length-1,
  26. slideWidth = $this.width(),
  27. prev = settings.prev,
  28. next = settings.next;
  29. //初始隐藏其它页,显示当前页
  30. if(!navigator.userAgent.match(/mobile/i)){
  31. slide.hide();
  32. slide.eq(index).show();
  33. }else{
  34. slide.css({
  35. "opacity":"0"
  36. });
  37. slide.eq(index).css({
  38. "opacity":"1"
  39. });
  40. };
  41. //显示当前页
  42. slideFadeIn = function(){
  43. if(!navigator.userAgent.match(/mobile/i)){
  44. slide.fadeOut(settings.fadespeed);
  45. slide.eq(index).fadeIn(settings.fadespeed);
  46. }else{
  47. slide.css({
  48. "opacity":"0",
  49. "-webkit-transition": settings.fadespeed/1000+"s"
  50. });
  51. slide.eq(index).css({
  52. "opacity":"1",
  53. "-webkit-transition": settings.fadespeed/1000+"s"
  54. });
  55. };
  56. };
  57. //翻页加,判断是否循环
  58. slideAdd = function() {
  59. if(settings.loop){
  60. index == len?index=0:index++;
  61. }else{
  62. index == len?index=len:index++;
  63. };
  64. slideFadeIn();
  65. };
  66. //翻页减,判断是否循环
  67. slideMinus = function() {
  68. if(settings.loop){
  69. index == 0?index=len:index--;
  70. }else{
  71. index == 0?index=0:index--;
  72. };
  73. slideFadeIn();
  74. };
  75. //页码
  76. pagnation = function(){
  77. var $paginationBox = $("<ul class='pagination'></ul>");
  78. var paginationStr ="";
  79. for(var i=1;i<=len+1;i++){
  80. paginationStr +="<li><a href='javascript:void(0)'>"+ i +"</a>";
  81. }
  82. $paginationBox.append(paginationStr);
  83. $this.after($paginationBox);
  84. $(".pagination li a").eq(index).addClass("active");
  85. };
  86. //当前页码
  87. pageActive = function(){
  88. $(".pagination li a").removeAttr("class")
  89. $(".pagination li a").eq(index).addClass("active");
  90. }
  91. //是否需要左右导航图标
  92. if(settings.nav) {
  93. var navStr = "<a href='javascript:void(0)' class="+ prev.substring(1) +"></a>" +
  94. "<a href='javascript:void(0)' class="+ next.substring(1) +"></a>";
  95. $this.after(navStr);
  96. $(next).click(function(){
  97. slideAdd();
  98. });
  99. $(prev).click(function(){
  100. slideMinus();
  101. })
  102. };
  103. //是否需要页码
  104. if(settings.pagination) {
  105. pagnation();
  106. $(prev).click(function(){ pageActive();});
  107. $(next).click(function(){ pageActive();});
  108. $(".pagination li").click(function(){
  109. var idx = $(this).index()-1;
  110. index = idx;
  111. slideAdd();
  112. pageActive();
  113. });
  114. };
  115. //页码居中
  116. if(settings.pagecenter){
  117. var pw = $(".pagination").width();
  118. $(".pagination").css({
  119. "position":"absolute",
  120. "left":"50%",
  121. "bottom":"5px",
  122. "margin-left":-pw/2,
  123. "z-index": "99"
  124. })
  125. };
  126. //是否自动播放
  127. if(settings.auto){
  128. var play = setInterval(function(){
  129. slideAdd();
  130. pageActive();
  131. },settings.playspeed);
  132. $this.nextAll().hover(function () {
  133. clearInterval(play);
  134. },
  135. function(){
  136. play = setInterval(function(){
  137. slideAdd();
  138. pageActive();
  139. },settings.playspeed);
  140. });
  141. };
  142. });
  143. };
  144. })(jQuery);