center-slider.js
5 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
/**
* (品牌优选)图片幻灯片插件
* @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
};
var shownum = options.shownum ? options.shownum : // eslint-disable-line
$.fn.slider2.defaults.shownum;
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);
}
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();
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'
});
});
});
$prevswitch.on('click', function(e) {
var i = 0,
_obj = null,
offersetleft = '';
e.preventDefault();
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);
});
if (opts.autoplay === true) {
// autoplayrecycle(opts.index, _size, true);
autoClickNext($(this));
$(this).hover(function() {
clearInterval(timer);
}, function() {
autoClickNext($(this));
});
}
});
};
}($));