imgSlider.js
4.15 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
var $ = require("jquery");
require('./lazyloadImage');
;
(function(global, undefined) {
var ImgSlider = function(element, options) {
this.options = options;
this.$wrap = $(element);
this.$element = $(element).find("ul");
this.$lis = this.$element.find("li");
this.$ctrl = $(this.options.slideCtrl).appendTo(this.$wrap);
this.$btnPrev = this.$ctrl.find('.slide-ctrl-prev'); //上一张按钮
this.$btnNext = this.$ctrl.find('.slide-ctrl-next'); //下一张按钮
this.len = this.$lis.length;
this.width = this.$lis.width() + parseInt(this.$lis.css("margin-right"));
this.index = 1;
this.page = 1;
this.init();
};
ImgSlider.DEFAULTS = {
slideCtrl: '<div class="slide-ctrl"><a class="slide-ctrl-prev" href="javascript:;"></a><a class="slide-ctrl-next" href="javascript:;"></a></div>',
pageNum: 4,
itemClass: ''
};
ImgSlider.prototype = {
constructor: ImgSlider,
init: function() {
var _this = this;
if (this.len <= 4) return;
this._calculationWidth(this.len, this.width);
this.$btnPrev.hide();
// 绑定事件
this._bindEvent();
},
/*
* next
*/
next: function() {
this.$btnPrev.show();
this.index++;
this._animate(-this.width);
},
/*
* prev
*/
prev: function() {
this.$btnNext.show();
this.index--;
this._animate(this.width);
},
/*
* 插件事件绑定
*/
_bindEvent: function() {
var _this = this;
this.$btnNext.on("click", function() {
if (_this.$element.is(':animated')) return;
_this.next();
_this.$element.find("img").lazyload();
if (_this.index == _this.len - _this.options.pageNum + 1) {
$(this).hide();
};
});
this.$btnPrev.on("click", function() {
if (_this.$element.is(':animated')) return;
_this.prev();
if (_this.index == 1) {
$(this).hide();
};
});
},
/*
* 动画
*/
_animate: function(offset) {
var left = parseInt(this.$element.css('left')) + offset;
var _this = this;
if (offset > 0) {
offset = '+=' + offset;
} else {
offset = '-=' + Math.abs(offset);
}
this.$element.stop().animate({
'left': offset
}, 300);
},
//计算宽度
_calculationWidth: function(len, width) {
this.$element.width(len * width);
},
//resize
resize: function() {
this.width = this.$lis.width() + parseInt(this.$lis.css("margin-right"));
if (this.options.itemClass != '') {
this.len = this.$element.find("li." + this.options.itemClass).length;
} else {
this.len = this.$element.find("li").length;
}
this._calculationWidth(this.len, this.width);
this.$element.css({
'left': -(this.index - 1) * this.width
});
}
};
function Plugin(option, _relatedTarget) {
return this.each(function() {
var $this = $(this);
var data = $this.data('yoho.ImgSlider');
var options = $.extend({}, ImgSlider.DEFAULTS, $this.data(), typeof option == 'object' && option);
// 如果没有初始化,则初始化该对象,并且把该对象绑定到此元素的yoho.PicSilder属性下。
if (!data) $this.data('yoho.ImgSlider', (data = new ImgSlider(this, options)));
// 如果传递的options是一个字符串,则表示调用改对象的原型方法。
if (typeof option == 'string') data[option](_relatedTarget);
});
};
$.fn.imgSlider = Plugin;
$.fn.imgSlider.Constructor = ImgSlider;
})($);