-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathzepto-range.js
213 lines (179 loc) · 6.56 KB
/
zepto-range.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
;(function ($) {
'use strict';
// thanks to http://www.mobify.com/
$.CSS = {
cache: {},
prefixes: ['Webkit', 'Moz', 'O', 'ms', '']
};
$.CSS.getProperty = function (name) {
var div, property;
if (typeof $.CSS.cache[name] !== 'undefined') {
return $.CSS.cache[name];
}
div = document.createElement('div').style;
for (var i = 0; i < $.CSS.prefixes.length; ++i) {
if (div[$.CSS.prefixes[i] + name] != undefined) {
return $.CSS.cache[name] = $.CSS.prefixes[i] + name;
}
}
}
$.supports = {
transform: !!($.CSS.getProperty('Transform')),
transform3d: !!(window.WebKitCSSMatrix && 'm11' in new WebKitCSSMatrix())
};
$.supports.addClass = function () {
$.each(arguments, function () {
$('html').addClass(($.supports[this] ? '' : 'no-') + this);
});
};
$.translateX = function(element, delta) {
var property = property = $.CSS.getProperty('Transform');
if (typeof delta === 'number') {
delta = delta + 'px';
}
if ($.supports.transform3d) {
return element.style[property] = 'translate3d(' + delta + ', 0, 0)';
} else if ($.supports.transform) {
return element.style[property] = 'translate(' + delta + ', 0)';
} else {
return element.style.left = delta;
}
};
})(Zepto);
;(function ($) {
'use strict';
var store = [],
isTouch = document.ontouchstart === null,
defaults = {
name: 'range',
tapGesture: isTouch ? 'tap' : 'click',
startGesture: isTouch ? 'touchstart' : 'mousedown',
moveGesture: isTouch ? 'touchmove' : 'mousemove',
stopGesture: isTouch ? 'touchend touchcancel' : 'mouseup',
};
function Range(input, labels) {
this.input = $(input);
this.container = this.input.wrap('<div>').parent();
this.container.addClass(defaults.name + ' ' + this.input[0].className);
// number
this.min = parseInt(this.input.attr('min'), 10);
this.max = parseInt(this.input.attr('max'), 10);
this.amount = (this.max - this.min) + 1;
this.current = parseInt(this.input.val(), 10) - this.min;
// html
this.btn = $('<div class="btn">');
this.fill = $('<div class="fill">');
this.bar = $('<div class="bar">').append(this.btn, this.fill);
this.container.append(this.bar);
this.btn.size = this.btn.width();
this.size = this.input.width() - this.btn.size;
this.gap = this.size / (this.amount - 1);
// legend
this.legend = legend(labels, this);
this.container.append(this.legend);
// init
this.change(this.current);
this.input.trigger('init', [this.current, this]);
}
function legend(labels, range) {
var diff = range.amount - labels.length,
gaps = labels.length - 1,
size = Math.floor(range.size / (range.amount - 1)),
container, tmp, i;
// labels
if (diff) {
if (!labels.length || diff % gaps) {
labels = new Array(range.amount);
} else {
tmp = new Array(diff / gaps);
tmp.unshift(null, 0);
for (i = 1; i < range.amount; i += tmp.length - 1) {
tmp[0] = i;
[].splice.apply(labels, tmp);
}
}
}
// html
container = $('<div class="legend" aria-hidden="true">');
container.append($.map(labels, function(item) {
return $('<div class="label">').text(item == undefined ? '' : item);
}));
container.children().width(size);
container.find(':first-child, :last-child').width(size / 2 + range.btn.size / 2);
return container;
}
$.extend(Range.prototype, {
pos: function () {
return this.current * this.gap;
},
moving: function (status) {
return this.container.toggleClass('moving', status);
},
move: function(to) {
var pos = to * this.gap;
$.translateX(this.btn[0], pos);
this.fill.width(pos);
this.input.trigger('move', [to, this]);
},
change: function(to) {
to = Math.round(to);
this.move(to);
this.current = to;
this.input.val(this.current + this.min);
this.input.trigger('change', [to, this]);
}
});
function events() {
// singleton pattern
var doc = $(document),
className = '.' + defaults.name;
doc.on(defaults.startGesture, className + ' .btn', function (event) {
var range = getRange(this),
pos = range && range.pos(),
initPos = event.pageX || (event.touches[0] && event.touches[0].pageX) || 0;
function animate(event) {
event.preventDefault();
pos = range.pos() - initPos;
pos += event.pageX || (event.touches[0] && event.touches[0].pageX) || 0;
pos = Math.max(0, Math.min(pos, range.size));
range.move(pos / range.gap);
}
function stop(event) {
doc.off(defaults.moveGesture, animate);
doc.off(defaults.stopGesture, stop);
range.moving(false);
range.change(pos / range.gap);
}
if (range) {
range.moving(true);
doc.bind(defaults.moveGesture, animate);
doc.bind(defaults.stopGesture, stop);
}
});
doc.on(defaults.tapGesture, className + ' .label', function (event) {
(getRange(this)).change($(this).index());
});
events = function() {};
}
function createRange(input, labels) {
var range;
if (!$(input).closest('.' + defaults.name).length) {
range = new Range(input, labels);
range.container.data(defaults.name + '-store', store.length);
store.push(range);
}
}
function getRange(item) {
var element = $(item).closest('.' + defaults.name);
return store[element.data(defaults.name + '-store')];
}
// plugin
$.fn.range = function() {
var labels;
events();
labels = Array.prototype.slice.call(arguments);
return this.each(function() {
createRange(this, labels);
});
};
})(Zepto);