-
Notifications
You must be signed in to change notification settings - Fork 125
/
iSlider.js
567 lines (484 loc) · 19.8 KB
/
iSlider.js
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
/**
* iSlider 高性能全屏滑动组件
* @class iSlider
* @param {object} opts
* @param {string} opts.wrap='.wrap' 容器
* @param {string} opts.item='.item' 滚动单元的元素
* @param {string} opts.playClass='play' 触发播放动画的class
* @param {number} [opts.index=0] 设置初始显示的页码
* @param {array} [opts.noslide=[]] 设置禁止滑动的页面序号(0开始), 禁止后 需要开发者手动绑定页面中的某个按钮事件进行滑动
* @param {number} [opts.speed=400] 动画速度 单位:ms
* @param {number} [opts.triggerDist=30] 触发滑动的手指移动最小位移 单位:像素
* @param {boolean} [opts.isVertical=true] 是否是垂直滑动 默认是. 设成false为水平滑动.
* @param {boolean} [opts.useACC=true] 是否启用硬件加速 默认启用
* @param {boolean} [opts.fullScr=true] 是否是全屏的 默认是. 如果是局部滑动,请设为false
* @param {boolean} [opts.preventMove=false] 是否阻止系统默认的touchmove移动事件, 默认不阻止, 该参数仅在局部滚动时有效, 如果是局部滚动 如果为true 那么在这个区域滑动的时候 将不会滚动页面. 如果是全屏情况 则会阻止
* @param {boolean} [opts.lastLocate=true] 后退后定位到上次浏览的位置 默认true
* @param {function} [opts.onslide] 滑动后回调函数 会回传index参数
* @param {array} [opts.loadingImgs] loading需要加载的图片地址列表
* @param {function} [opts.onloading] loading时每加载完成一个图片都会触发这个回调 回调时参数值为 (已加载个数,总数)
* @param {number} [opts.loadingOverTime=15] 预加载超时时间 单位:秒
* @desc
- 如丝般高性能全屏动画滑屏组件, 主要应用于微信H5宣传页,海报,推广介绍等场景. 基于iSlider,可以快速搭建效果炫丽的H5滑屏页面.
- 简洁,易用. 无css依赖.
- 专注于页面滑动, 没有冗余代码 , 保证性能.
- 组件没有任何依赖.
- imgcache 引用地址 : http://imgcache.gtimg.cn/music/h5/lib/js/module/iSlider-1.0.min.js?_bid=363&max_age=2592000
- github: https://github.com/kele527/iSlider
* @example
//极简用法
new iSlider(); //容器默认是 .wrap 元素默认是 .item 动画播放class默认是 play
//普通用法
new iSlider({
wrap:'.wrap',
item:'.item',
playClass:'play',
onslide:function (index) {
console.info(index)
}
});
//带loading进度条用法
new iSlider({
wrap:'.wrap',
item:'.item',
playClass:'play',
onslide:function (index) {
console.info(index)
},
loadingImgs:[
'http://imgcache.gtimg.cn/mediastyle/mobile/event/20141118_ten_jason/img/open_cover.jpg?max_age=2592000',
'http://imgcache.gtimg.cn/mediastyle/mobile/event/20141118_ten_jason/img/im_cover.jpg?max_age=2592000',
'http://imgcache.gtimg.cn/mediastyle/mobile/event/20141118_ten_jason/img/bg1.jpg?max_age=2592000',
'http://imgcache.gtimg.cn/mediastyle/mobile/event/20141118_ten_jason/img/bg2.jpg?max_age=2592000'
],
onloading:function (loaded,total) {
this.$('#loading div').style.width=loaded/total*100+'%';
if (loaded==total) {
this.$('#loading').style.display="none"
}
}
});
demo http://kele527.github.io/iSlider/demo1.html
* @date 2014/11/3 星期一
* @author rowanyang
*
*/
function iSlider(opts) {
this.opts={
wrap:'.wrap',
item:'.item',
playClass:'play',
index:0,
noslide:[],
noslideBack:false, //当noslide生效的时候 是否允许往回滑动 默认不允许, 如果有需要可以开启
speed:400, //滑屏速度 单位:ms
triggerDist:30,//触发滑动的手指移动最小位移 单位:像素
isVertical:true,//垂直滑还是水平滑动
useACC:true, //是否启用硬件加速 默认启用
fullScr:true, //是否是全屏的 默认是. 如果是局部滑动,请设为false
preventMove:false, //是否阻止系统默认的touchmove移动事件, 默认不阻止, 该参数仅在局部滚动时有效, 如果是局部滚动 如果为true 那么在这个区域滑动的时候 将不会滚动页面. 如果是全屏情况 则会阻止
lastLocate:true, //后退后定位到上次浏览的位置 默认开启
loadingImgs:[], //loading 预加载图片地址列表
onslide:function (index) {},//滑动回调 参数是本对象
onloading:function (loaded,total) {},
loadingOverTime:15 //预加载超时时间 单位:秒
}
for (var i in opts) {
this.opts[i]=opts[i];
}
this.SS=false;
try {
this.SS=sessionStorage;
this.SS['spt']=1;//检测是否是ios私密浏览模式 如果是私密模式 这一行会报错 进入到catch
}catch (e) {
this.SS=0;
}
this.init();
}
/** @lends iSlider */
iSlider.prototype={
wrap:null,
index : 0,
length:0,
_tpl:[],
_delayTime:150,
_sessionKey : location.host+location.pathname,
_prev:null,
_current:null,
_next:null,
$:function (o,p) {
return (p||document).querySelector(o);
},
addClass:function (o,cls) {
if (o.classList) {
o.classList.add(cls)
}else {
o.className+=' '+cls;
}
},
removeClass:function (o,cls) {
if (o.classList) {
o.classList.remove(cls)
}else {
o.className=o.className.replace(new RegExp('\\s*\\b'+cls+'\\b','g'),'')
}
},
init:function () {
var self = this;
this.wrap = typeof this.opts.wrap=='string' ? this.$(this.opts.wrap) : this.opts.wrap ;
if (this.SS) {
//使用sessionStorage来保存当前浏览到第几页了 后退回来的时候 定位到这一页
this._sessionKey=btoa(encodeURIComponent(this._sessionKey+this.wrap.id+this.wrap.className));
var lastLocateIndex=parseInt(this.SS[this._sessionKey]);
this.index = (this.opts.lastLocate && lastLocateIndex>=0) ? lastLocateIndex : 0;
}else {
this.index = this.opts.index || 0;
}
if (!this.wrap) {
throw Error('"wrap" param can not be empty!');
return ;
}
this._tpl = this.wrap.cloneNode(true);
this._tpl = this.opts.item ? this._tpl.querySelectorAll(this.opts.item) : this._tpl.children;
for (var i=0; i<this._tpl.length; i++) {
this._tpl[i].style.cssText+='display:block;position:absolute;left:0;top:0;width:100%;height:100%'
};
this.length=this._tpl.length; //总页数数据
this.touchInitPos = 0;//手指初始位置
this.startPos = 0;//移动开始的位置
this.totalDist = 0,//移动的总距离
this.deltaX1 = 0;//每次移动的正负
this.deltaX2 = 0;//每次移动的正负
//全屏滑动 设置样式
if (this.opts.fullScr) {
var s = document.createElement('style');
s.innerHTML = 'html,body{width:100%;height:100%;overflow:hidden}';
document.head.appendChild(s);
s = null;
}
this.wrap.style.cssText+="display:block;position:relative;"+(this.opts.fullScr ? 'width:100%;height:100%':'');
//必须要在前面的布局都设置好后 再来获取尺寸
this.displayWidth = this.wrap.clientWidth; //滑动区域最大宽度
this.displayHeight = this.wrap.clientHeight; //滑动区域最大高度
this.scrollDist=this.opts.isVertical ? this.displayHeight : this.displayWidth;//滚动的区域尺寸
this._setHTML();// 填充初始DOM
if (this.opts.loadingImgs && this.opts.loadingImgs.length) {
this._loading();
}else {
this._pageInit();
}
if (/iPhone|iPod|iPad/.test(navigator.userAgent)) {
this._delayTime=50;
}
this._bindEvt();
},
_bindEvt:function () {
var self = this;
var handlrElm= this.opts.fullScr ? this.$('body') : this.wrap;
handlrElm.addEventListener('touchstart',function (e) {
self._touchstart(e);
},false);
handlrElm.addEventListener('touchmove',function (e) {
self._touchmove(e);
if (!self.opts.fullScr) { //修复手Q中局部使用时的一个bug
e.stopPropagation();
e.preventDefault();
}
},false);
handlrElm.addEventListener('touchend',function (e) {
self._touchend(e);
},false);
handlrElm.addEventListener('touchcancel',function (e) {
self._touchend(e);
},false);
if (this.opts.fullScr || this.opts.preventMove) {
handlrElm.addEventListener('touchmove', function (e) {e.target.getAttribute('data-stop') !== "true" && e.preventDefault(); }, false);
}
},
_setHTML:function (index) {
if (index>=0) {
this.index=parseInt(index);
}
this.wrap.innerHTML='';
var initDom = document.createDocumentFragment();
if (this.index>0) {
this._prev=this._tpl[this.index-1].cloneNode(true);
this._prev.style.cssText+=this._getTransform('-'+this.scrollDist+'px');
initDom.appendChild(this._prev)
}else {
this._prev=null;
}
this._current =this._tpl[this.index].cloneNode(true);
this._current.style.cssText+=this._getTransform(0);
initDom.appendChild(this._current);
if (this.index<this.length-1) {
this._next=this._tpl[this.index+1].cloneNode(true);
this._next.style.cssText+=this._getTransform(this.scrollDist+'px');
initDom.appendChild(this._next)
}else {
this._next=null;
}
this.wrap.appendChild(initDom);
},
_pageInit:function () {
var self = this;
setTimeout(function () {
self.addClass(self._current,self.opts.playClass);
try {
self.opts.onslide.call(self,self.index);
} catch (e) {
// console.info(e)
}
},this._delayTime);
},
_touchstart : function (e) {
var self=this;
if(e.target.getAttribute("data-stop") === "true")return;
if(e.touches.length !== 1){return;}//如果大于1个手指,则不处理
this.lockSlide=false;
this._touchstartX=e.touches[0].pageX;
this._touchstartY=e.touches[0].pageY;
this.touchInitPos = this.opts.isVertical ? e.touches[0].pageY:e.touches[0].pageX; // 每次move的触点位置
this.deltaX1 = this.touchInitPos;//touchstart的时候的原始位置
this.startPos = 0;
this.startPosPrev = -this.scrollDist;
this.startPosNext = this.scrollDist;
//手指滑动的时候禁用掉动画
if (this._next) {
self._next.style.cssText+='-webkit-transition-duration:0;'
}
self._current.style.cssText+='-webkit-transition-duration:0;'
if (this._prev) {
self._prev.style.cssText+='-webkit-transition-duration:0;'
}
},
_touchmove : function (e) {
var parent=e.target;
if(parent.getAttribute("stop") === "true")return;
do {
parent=parent.parentNode;
} while (parent && parent!=this.wrap);
if (!parent && e.target!=this.wrap ) {
return ;
}
var self = this;
if(e.touches.length !== 1 || this.lockSlide){return;}
var gx=Math.abs(e.touches[0].pageX - this._touchstartX);
var gy=Math.abs(e.touches[0].pageY - this._touchstartY);
//如果手指初始滑动的方向跟页面设置的方向不一致 就不会触发滑动 这个主要是避免误操作, 比如页面是垂直滑动, 在某一页加了横向滑动的局部动画, 那么左右滑动的时候要保证页面不能上下移动. 这里就是做这个的.
if (gx>gy && this.opts.isVertical) { //水平滑动
this.lockSlide=true;
return ;
}else if(gx<gy && !this.opts.isVertical){ //垂直滑动
this.lockSlide=true;
return ;
}
if (this.opts.noslide && this.opts.noslide.indexOf(this.index)>=0) {
//noslideBack 默认值是false 默认是禁用滑动后 前后都不能再滑动,
//但是当noslideBack为true时, 禁用了这一页的滑动, 那么往下是划不动了 但是可以往上滑
if ( !this.opts.noslideBack || (this.opts.isVertical ? (e.touches[0].pageY - this._touchstartY < 0) : (e.touches[0].pageX - this._touchstartX < 0)) ) {
return ;
}
}
var currentX = this.opts.isVertical ? e.touches[0].pageY:e.touches[0].pageX;
this.deltaX2 = currentX - this.deltaX1;//记录当次移动的偏移量
this.totalDist = this.startPos + currentX - this.touchInitPos;
self._current.style.cssText+=this._getTransform(this.totalDist+'px');
this.startPos = this.totalDist;
//处理上一张和下一张
if (this.totalDist<0) {//露出下一张
if (this._next) {
this.totalDist2 = this.startPosNext + currentX - this.touchInitPos;
self._next.style.cssText += this._getTransform(this.totalDist2+'px');
this.startPosNext = this.totalDist2;
}
}else {//露出上一张
if (this._prev) {
this.totalDist2 = this.startPosPrev + currentX - this.touchInitPos;
self._prev.style.cssText += this._getTransform(this.totalDist2+'px');
this.startPosPrev = this.totalDist2;
}
}
this.touchInitPos = currentX;
},
_touchend : function (e) {
if(e.target.getAttribute("stop") === "true")return;
if(this.deltaX2 < -this.opts.triggerDist){
this.next();
}else if(this.deltaX2 > this.opts.triggerDist){
this.prev();
}else{
this._itemReset();
}
this.deltaX2 = 0;
},
_getTransform:function (dist) {
var pos= this.opts.isVertical? '0,'+dist : dist+',0';
return ';-webkit-transform:' + (this.opts.useACC ? 'translate3d('+pos+',0)' : 'translate('+pos+')');
},
_itemReset:function () {
var self = this;
self._current.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform(0);
if (self._prev) {
self._prev.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform('-'+this.scrollDist+'px');
}
if (self._next) {
self._next.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform(this.scrollDist+'px');
}
this.deltaX2 = 0;
},
_loading:function () {
var self = this;
var imgurls=this.opts.loadingImgs;
var fallback=setTimeout(function () {
try {
self.opts.onloading.call(self,total,total);
} catch (e) { }
self._pageInit();
},this.opts.loadingOverTime*1000);//loading超时时间 万一进度条卡那了 15秒后直接显示
var imgs=[], loaded=1;
var total=imgurls.length+1;
for (var i=0; i<imgurls.length; i++) {
imgs[i]=new Image();
imgs[i].src=imgurls[i];
imgs[i].onload=imgs[i].onerror=imgs[i].onabort=function (e) {
loaded++;
if (this.src === imgurls[0] && e.type === 'load') {
clearTimeout(fallback)
}
checkloaded();
this.onload=this.onerror=this.onabort=null;
}
}
try {
self.opts.onloading.call(self,1,total);
} catch (e) { }
function checkloaded() {
try {
self.opts.onloading.call(self,loaded,total);
} catch (e) { }
if (loaded==total) {
if (fallback) {
clearTimeout(fallback)
}
self._pageInit();
imgs=null;
if (self.opts.preLoadingImgs && self.opts.preLoadingImgs.length) {
self.preloading();
}
}
}
},
/**
* 滑动到上一页
* @example
s1.prev();
*/
prev:function () {
var self = this;
if (!this._current || !this._prev) {
this._itemReset();
return ;
}
if (this.index > 0) {
this.index--;
}else {
this._itemReset();
return false;
}
// var nextIndex = this.index+1 > this.length-1 ? 0 : this.index+1;
if (this._next) {
this.wrap.removeChild(this._next);
}
this._next=this._current;
this._current=this._prev;
this._prev=null;
this._next.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform(this.scrollDist+'px');
this._current.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform(0);
if (this.SS) {
this.SS[this._sessionKey]=this.index;
}
setTimeout(function () {
if (self.$('.'+self.opts.playClass,self.wrap)) {
self.removeClass(self.$('.'+self.opts.playClass,self.wrap),self.opts.playClass)
}
self.addClass(self._current,self.opts.playClass)
try {
self.opts.onslide.call(self,self.index);
} catch (e) {
// console.info(e)
}
var prevIndex = self.index-1;
if (prevIndex < 0) {
prevIndex = self.length-1;
return false;
}
self._prev = self._tpl[prevIndex].cloneNode(true);
self._prev.style.cssText+='-webkit-transition-duration:0ms;'+self._getTransform('-'+self.scrollDist+'px');
self.wrap.insertBefore(self._prev,self._current);
},this._delayTime)
},
/**
* 滑动到下一页
* @example
s1.next();
*/
next:function () {
var self = this;
if (!this._current || !this._next) {
this._itemReset();
return ;
}
if (this.index < this.length-1) {
this.index++;
}else {
this._itemReset();
return false;
}
// var prevIndex = this.index===0 ? this.length-1 : this.index-1;
if (this._prev) {
this.wrap.removeChild(this._prev);
}
this._prev=this._current;
this._current=this._next;
this._next=null;
this._prev.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform('-'+this.scrollDist+'px');
this._current.style.cssText+='-webkit-transition-duration:'+this.opts.speed+'ms;'+this._getTransform(0);
if (this.SS) {
this.SS[this._sessionKey]=this.index;
}
setTimeout(function () {
if (self.$('.'+self.opts.playClass,self.wrap)) {
self.removeClass(self.$('.'+self.opts.playClass,self.wrap),self.opts.playClass)
}
self.addClass(self._current,self.opts.playClass)
try {
self.opts.onslide.call(self,self.index);
} catch (e) {
// console.info(e)
}
var nextIndex = self.index+1;
if (nextIndex >= self.length) {
return false;
}
self._next = self._tpl[nextIndex].cloneNode(true);
self._next.style.cssText+='-webkit-transition-duration:0ms;'+self._getTransform(self.scrollDist+'px');
self.wrap.appendChild(self._next);
},this._delayTime)
},
/**
* 跳转到指定页码
* @param {number} index 页码 从0开始的
* @example
s1.slideTo(3);
*/
slideTo:function (index) {
this._setHTML(index);
this._pageInit();
}
}
if (typeof module == 'object') {
module.exports=iSlider;
}else {
window.iSlider=iSlider;
}