center-slider.js
7.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/**
* (品牌优选)图片幻灯片插件
* @author: wangqing(robin.wang@yoho.cn)
* @date: 205/7/2
*/
(function($) {
var lazyLoad = require('yoho-jquery-lazyload');
$.fn.slider2 = function(options) {
var timer,
$imglist = $(this).find('.img-list'),
$imgitem = $(this).find('.img-item'),
$switch = $(this).find('.img-brand-switch');
var $prevswitch = $switch.find('.prev'),
$nextswitch = $switch.find('.next');
$.fn.slider2.defaults = {
index: 0,
shownum: 3,
autoplay: false,
delaytime: 3000,
isCircle: true
};
var shownum = options.shownum ? options.shownum : // eslint-disable-line
$.fn.slider2.defaults.shownum;
var isCircle = 'isCircle' in options ? options.isCircle : // eslint-disable-line
$.fn.slider2.defaults.isCircle;
function autoplayrecycle(index, limit, toright) {
window.setTimeout(autoplay, $.fn.slider2.defaults.delaytime, index, limit, toright);// eslint-disable-line
}
function autoplay(index, limit, toright) {
if (toright === true) {
$nextswitch.trigger('click');
if (index === (limit - shownum)) {
autoplayrecycle(--index, limit, false);
} else {
autoplayrecycle(++index, limit, true);
}
} else {
$prevswitch.trigger('click');
if (index === 0) {
autoplayrecycle(++index, limit, true);
} else {
autoplayrecycle(--index, limit, false);
}
}
}
function autoClickNext() {
var delaytime = 'delaytime' in options ? options.delaytime :
$.fn.slider2.defaults.delaytime;
timer = setInterval(function() {
$nextswitch.click();
}, delaytime);
}
function changePic(index, width, callback) {
var offersetleft = -(index * width);
$imglist
.animate({
'margin-left': offersetleft + 'px'
}, 'slow', callback);
}
/**
* 不轮播左右切换
* @param $items 图片dom
* @param shownum 展示张数
* @param direction 0=左箭头, 1=右箭头
* @param $switch 按钮
*/
function changeMarLeft(wItem, num, direction, $arrow) {
// 处理双击问题
var disableSwitch = $arrow.data('disable') ? true : false;
var offersetleft = num * wItem;
var w = parseInt($imglist.css('width'), 10);
var ml = $imglist.css('margin-left') === '0px' ? 0 : parseInt($imglist.css('margin-left'), 10);
var gap = ml + offersetleft > wItem ? 0 : ml + offersetleft;
var mo = direction === 0 ? gap : ml - offersetleft;
var flag = direction === 0 ? ml < 0 : (w - (-ml) - offersetleft) >= wItem;
if (disableSwitch) {
return;
}
$prevswitch.data('disable', true);
$nextswitch.data('disable', true);
if (flag) {
$imglist
.animate({
'margin-left': mo + 'px'
}, 'slow', function() {
$prevswitch.data('disable', false);
$nextswitch.data('disable', false);
});
options.yasFun($arrow);
} else {
$prevswitch.data('disable', false);
$nextswitch.data('disable', false);
}
}
function _slideShow() {
var $imgLazyList = $imglist.find('img.lazy'),
i = 0,
$img;
for (i; i < $imgLazyList.length; i++) {
$img = $($imgLazyList[i]);
// 未加载图片的及时显示
if ($img.attr('src') !== $img.data('original')) {
lazyLoad($img, {
event: 'sporty'
});
$img.trigger('sporty');
}
}
}
_slideShow();// 首次把所有懒加载图片,都加载了
return this.each(function() {
var opts = $.extend({}, $.fn.slider2.defaults, options);
var mr = parseInt($imgitem.css('margin-right'), 10);
var $banneritems = $imgitem;
var bannerarr = [];
var _width = $banneritems.outerWidth() + mr,
_size = $banneritems.length,
j = 0;
if (_size <= shownum) {
$switch.hide();
return;
}
for (j = 0; j < $banneritems.length; j++) {
bannerarr.push($banneritems[j]);
}
_size = bannerarr.length;
$imglist.css({
width: (_width * _size)
});
$nextswitch.on('click', function(e) {
var i = 0,
_obj = null;
e.preventDefault();
if (isCircle) {
// 循环播放
changePic(shownum, _width, function() {
for (i = 0; i < shownum; i++) {
_obj = bannerarr.shift();
$imglist.append(_obj.outerHTML);
bannerarr.push(_obj);
$imglist.find('.img-item').first().remove();
}
$imglist.css({
'margin-left': '0'
});
});
} else {
changeMarLeft($banneritems.outerWidth() + mr, shownum, 1, $nextswitch);
}
});
$prevswitch.on('click', function(e) {
var i = 0,
_obj = null,
offersetleft = '';
e.preventDefault();
if (isCircle) {
for (i = 0; i < shownum; i++) {
_obj = bannerarr.pop();
$imglist.prepend(_obj.outerHTML);
bannerarr.unshift(_obj);
$imglist.find('.img-item').last().remove();
}
offersetleft = shownum * _width;
$imglist.css({
'margin-left': -offersetleft + 'px'
});
changePic(0, _width);
} else {
changeMarLeft($banneritems.outerWidth() + mr, shownum, 0, $prevswitch);
}
});
if (opts.autoplay === true) {
// autoplayrecycle(opts.index, _size, true);
autoClickNext($(this));
$(this).hover(function() {
clearInterval(timer);
}, function() {
autoClickNext($(this));
});
}
});
};
}($));