-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathcarousel-swipe.js
171 lines (146 loc) · 5.09 KB
/
carousel-swipe.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
+function ($) {
'use strict';
if ( !$.fn.carousel ) {
throw new Error( "carousel-swipe required bootstrap carousel" )
}
// CAROUSEL CLASS DEFINITION
// =========================
var CarouselSwipe = function(element) {
this.$element = $(element)
this.carousel = this.$element.data('bs.carousel')
this.options = $.extend({}, CarouselSwipe.DEFAULTS, this.carousel.options)
this.startX =
this.startY =
this.startTime =
this.cycling =
this.$active =
this.$items =
this.$next =
this.$prev =
this.dx = null
this.sliding = false
this.$element
.on('touchstart', $.proxy(this.touchstart,this))
.on('touchmove', $.proxy(this.touchmove,this))
.on('touchend', $.proxy(this.touchend,this))
.on('slide.bs.carousel', $.proxy(this.startSliding, this))
.on('slid.bs.carousel', $.proxy(this.stopSliding, this))
}
CarouselSwipe.DEFAULTS = {
swipe: 50 // percent per second
}
CarouselSwipe.prototype.startSliding = function() {
this.sliding = true
}
CarouselSwipe.prototype.stopSliding = function() {
this.sliding = false
}
CarouselSwipe.prototype.touchstart = function(e) {
if (this.sliding || !this.options.swipe) return;
var touch = e.originalEvent.touches ? e.originalEvent.touches[0] : e
this.dx = 0
this.startX = touch.pageX
this.startY = touch.pageY
this.cycling = null
this.width = this.$element.width()
this.startTime = e.timeStamp
}
CarouselSwipe.prototype.touchmove = function(e) {
if (this.sliding || !this.options.swipe || !this.startTime) return;
var touch = e.originalEvent.touches ? e.originalEvent.touches[0] : e
var dx = touch.pageX - this.startX
var dy = touch.pageY - this.startY
if (Math.abs(dx) < Math.abs(dy)) return; // vertical scroll
if ( this.cycling === null ) {
this.cycling = !!this.carousel.interval
this.cycling && this.carousel.pause()
}
e.preventDefault()
this.dx = dx / (this.width || 1) * 100
this.swipe(this.dx)
}
CarouselSwipe.prototype.touchend = function(e) {
if (this.sliding || !this.options.swipe || !this.startTime) return;
if (!this.$active) return; // nothing moved
var all = $()
.add(this.$active).add(this.$prev).add(this.$next)
.carousel_transition(true)
var dt = (e.timeStamp - this.startTime) / 1000
var speed = Math.abs(this.dx / dt) // percent-per-second
if (this.dx > 40 || (this.dx > 0 && speed > this.options.swipe)) {
this.carousel.prev()
} else if (this.dx < -40 || (this.dx < 0 && speed > this.options.swipe)) {
this.carousel.next();
} else {
this.$active
.one($.support.transition.end, function () {
all.removeClass('prev next')
})
.emulateTransitionEnd(this.$active.css('transition-duration').slice(0, -1) * 1000)
}
all.css('transform', '')
this.cycling && this.carousel.cycle()
this.$active = null // reset the active element
this.startTime = null
}
CarouselSwipe.prototype.swipe = function(percent) {
var $active = this.$active || this.getActive()
if (percent < 0) {
this.$prev
.css('transform', 'translate3d(0,0,0)')
.removeClass('prev')
.carousel_transition(true)
if (!this.$next.length || this.$next.hasClass('active')) return
this.$next
.carousel_transition(false)
.addClass('next')
.css('transform', 'translate3d(' + (percent + 100) + '%,0,0)')
} else {
this.$next
.css('transform', '')
.removeClass('next')
.carousel_transition(true)
if (!this.$prev.length || this.$prev.hasClass('active')) return
this.$prev
.carousel_transition(false)
.addClass('prev')
.css('transform', 'translate3d(' + (percent - 100) + '%,0,0)')
}
$active
.carousel_transition(false)
.css('transform', 'translate3d(' + percent + '%, 0, 0)')
}
CarouselSwipe.prototype.getActive = function() {
this.$active = this.$element.find('.item.active')
this.$items = this.$active.parent().children()
this.$next = this.$active.next()
if (!this.$next.length && this.options.wrap) {
this.$next = this.$items.first();
}
this.$prev = this.$active.prev()
if (!this.$prev.length && this.options.wrap) {
this.$prev = this.$items.last();
}
return this.$active;
}
// CAROUSEL PLUGIN DEFINITION
// ==========================
var old = $.fn.carousel
$.fn.carousel = function() {
old.apply(this, arguments);
return this.each(function () {
var $this = $(this)
var data = $this.data('bs.carousel.swipe')
if (!data) $this.data('bs.carousel.swipe', new CarouselSwipe(this))
})
}
$.extend($.fn.carousel,old);
$.fn.carousel_transition = function(enable) {
enable = enable ? '' : 'none';
return this.each(function() {
$(this)
.css('-webkit-transition', enable)
.css('transition', enable)
})
};
}(jQuery);