forked from leongersen/noUiSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslider-options.php
505 lines (347 loc) · 12.5 KB
/
slider-options.php
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
<?php
$title = "noUiSlider - Options and settings";
$description = "There are many options to make noUiSlider do exactly what you need. Read all about these options and find the one you need.";
$canonical = "nouislider/slider-options/"
?>
<h1>Options</h1>
<section>
<div class="double">
<p>noUiSlider can be configured with a wide variety of options, which can be use to customize a slider's behaviour.</p>
<p>For options regarding the slider range, see <a href="/nouislider/slider-values/"> slider values</a>.</p>
</div>
</section>
<section>
<div class="notice">For a complete overview of all slider options, method and properties, see <a href="/nouislider/reference/"> reference</a>.</div>
</section>
<section>
<ul>
<li><a href="#section-start">Start</a></li>
<li><a href="#section-connect">Connect</a></li>
<li><a href="#section-margin">Margin</a></li>
<li><a href="#section-limit">Limit</a></li>
<li><a href="#section-padding">Padding</a></li>
<li><a href="#section-step">Step</a></li>
<li><a href="#section-orientation">Orientation</a></li>
<li><a href="#section-direction">Direction</a></li>
<li><a href="#section-tooltips">Tooltips</a></li>
<li><a href="#section-animate">Animate</a></li>
<li><a href="#section-keyboard-support">Keyboard Support</a></li>
<li><a href="#section-document-element">Document Element <small>(advanced)</small></a></li>
</ul>
</section>
<?php sect('start'); ?>
<h2>Start</h2>
<section>
<div class="view">
<p>The start option sets the number of handles and corresponding start positions.</p>
<p>The start option uses the slider's <code>'format'</code> option to decode the input. Number input will be cast to string and decoded.</p>
<div class="example">
<div id="slider-start"></div>
<?php run('start', false); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><em>none</em></div>
<strong>Accepted values</strong>
<div><code>'string'</code>,<br>
<code>array['string']</code>,<br>
<code>array['string', 'string', ...]</code>
</div>
</div>
</div>
<div class="side">
<?php code('start'); ?>
</div>
</section>
<?php sect('connect'); ?>
<h2>Connect</h2>
<section>
<div class="view">
<p>The connect option can be used to control the bar between the handles or the edges of the slider.</p>
<p>When using one handle, set the value to either <code>'upper'</code> or <code>'lower'</code>.</p>
<div class="example">
<div id="slider-connect"></div>
<?php run('connect'); ?>
</div>
<p>For sliders with 2 or more handles, pass an <code>array</code> with a <code>boolean</code> for every connecting element, including the edges of the slider. The length of this array must match the handle count + 1.</p>
<p>Setting <code>true</code> sets the bars between the handles, but not between the handles and the sliders edges.</p>
<div class="example">
<div id="slider-connect2"></div>
<?php run('connect-more'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>false</code></div>
<strong>Accepted values</strong>
<div>
<code>'lower'</code>,<br>
<code>'upper'</code>,<br>
<code>true</code>,<br>
<code>false</code>,<br>
<code>array[...]</code>
</div>
</div>
</div>
<div class="side">
<?php code('connect'); ?>
<?php code('connect-more'); ?>
</div>
</section>
<?php sect('margin'); ?>
<h2>Margin</h2>
<section>
<div class="view">
<p>When using two handles, the minimum distance between the handles can be set using the margin option. The margin value is relative to the value set in 'range'.</p>
<div class="example">
<div id="slider-margin"></div>
<span class="example-val" id="slider-margin-value-min"></span>
<span class="example-val" id="slider-margin-value-max"></span>
<?php run('margin'); ?>
<?php run('margin-link'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><em>none</em></div>
<strong>Accepted values</strong>
<div><code>number</code></div>
</div>
</div>
<div class="side">
<?php code('margin'); ?>
<div class="viewer-header">Show the slider value</div>
<div class="viewer-content">
<?php code('margin-link'); ?>
</div>
</div>
</section>
<?php sect('limit'); ?>
<h2>Limit</h2>
<section>
<div class="view">
<p>The limit option is the opposite of the margin option, limiting the maximum distance between two handles.</p>
<div class="example">
<div id="slider-limit"></div>
<span class="example-val" id="slider-limit-value-min"></span>
<span class="example-val" id="slider-limit-value-max"></span>
<?php run('limit'); ?>
<?php run('limit-link'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><em>none</em></div>
<strong>Accepted values</strong>
<div><code>number</code>
</div>
</div>
</div>
<div class="side">
<?php code('limit'); ?>
<div class="viewer-header">Show the slider value</div>
<div class="viewer-content">
<?php code('limit-link'); ?>
</div>
</div>
</section>
<?php sect('padding'); ?>
<h2>Padding</h2>
<section>
<div class="view">
<p>Padding limits how close to the slider edges handles can be.</p>
<div class="example">
<div id="slider-padding"></div>
<span class="example-val" id="slider-padding-value-min"></span>
<span class="example-val" id="slider-padding-value-max"></span>
<?php run('padding'); ?>
<?php run('padding-link'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><em>0</em></div>
<strong>Accepted values</strong>
<div><code>number</code>,<br>
<code>array[number]</code>,<br>
<code>array[number, number]</code>
</div>
</div>
</div>
<div class="side">
<?php code('padding'); ?>
<div class="viewer-header">Show the slider value</div>
<div class="viewer-content">
<?php code('padding-link'); ?>
</div>
</div>
</section>
<?php sect('step'); ?>
<h2>Step</h2>
<section>
<div class="view">
<p>By default, the slider slides fluently. In order to make the handles jump between intervals, the step option can be used.</p>
<div class="notice">
<p>Note that for non-linear sliders, <code>step</code> values are set as part of the <a href="/nouislider/slider-values/#section-range"><code>range</code> option</a>.</p>
</div>
<div class="example">
<div id="slider-step"></div>
<?php run('step'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><em>none</em></div>
<strong>Accepted values</strong>
<div><code>number</code>
</div>
</div>
</div>
<div class="side">
<?php code('step'); ?>
</div>
</section>
<?php sect('orientation'); ?>
<h2>Orientation</h2>
<section>
<div class="view">
<p>The orientation setting can be used to set the slider to <code>"vertical"</code> or <code>"horizontal"</code>.</p>
<p><strong>Set dimensions!</strong> Vertical sliders don't assume a default <code>height</code>, so a height needs to be set. Any unit can be used, including <code>%</code> or <code>px</code>.</p>
<div class="example vertical">
<div id="slider-vertical"></div>
<?php run('orientation'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>"horizontal"</code></div>
<strong>Accepted values</strong>
<div><code>"vertical"</code>, <code>"horizontal"</code></div>
</div>
</div>
<div class="side">
<?php code('orientation'); ?>
</div>
</section>
<?php sect('direction'); ?>
<h2>Direction</h2>
<section>
<div class="view">
<p>By default the sliders are <em>top-to-bottom</em> and <em>left-to-right</em>, but this can be changed using the direction option, which decides where the upper side of the slider is.</p>
<div class="example">
<div id="slider-direction"></div>
<div class="example-val" id="field"></div>
<?php run('direction'); ?>
<?php run('direction-link'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>"ltr"</code></div>
<strong>Accepted values</strong>
<div><code>"ltr"</code>, <code>"rtl"</code></div>
</div>
</div>
<div class="side">
<?php code('direction'); ?>
<div class="viewer-header">Show the slider value</div>
<div class="viewer-content">
<?php code('direction-link'); ?>
</div>
</div>
</section>
<?php sect('tooltips'); ?>
<h2>Tooltips</h2>
<section>
<div class="view">
<p>noUiSlider can provide a basic tooltip using the <code>tooltips</code> option. This option can also accept <a href="/nouislider/number-formatting/">formatting options</a> to format the tooltips content. In that case, pass an <code>array</code> with a formatter for each handle, <code>true</code> to use the default or <code>false</code> to display no tooltip.</p>
<p>Tooltips can be removed from a slider using the <code>removeTooltips()</code> method.</p>
<p>To merge overlapping tooltips, refer to <a href="/nouislider/examples/#section-merging-tooltips">this example</a>.</p>
<div class="example overflow">
<div id="slider-tooltips"></div>
<?php run('tooltips'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>false</code></div>
<strong>Accepted values</strong>
<div><code>false</code>, <code>true</code>, <code>formatter</code>, <code>array[formatter or true or false, ...]</code></div>
</div>
</div>
<div class="side">
<?php code('tooltips'); ?>
</div>
</section>
<?php sect('animate'); ?>
<h2>Animate</h2>
<section>
<div class="view">
<p>Set the animate option to <code>false</code> to prevent the slider from animating to a new value with when calling <code>.set()</code>.</p>
<div class="example" style="margin: 0; padding-bottom: 20px">
<div class="sliders" id="slider-slow"></div>
<?php run('animate-duration'); ?>
<button id="set-sliders">Set sliders</button>
</div>
<div class="example" style="margin: 0;">
<div class="sliders" id="slider-animate-false"></div>
<?php run('animate'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>true</code></div>
<strong>Accepted values</strong>
<div><code>true</code>, <code>false</code></div>
</div>
<br>
<h3>Animation Duration</h3>
<p>The <code>animationDuration</code> option can be used to set the animation speed assumed by the slider library.</p>
<p>In addition to this, the CSS <code>(-webkit-)transition</code> property for the <code>.noUi-state-tap .noUi-origin</code> and <code>.noUi-state-tap .noUi-connect</code> selectors must be set.</p>
<div class="options">
<strong>Default</strong>
<div><code>300</code></div>
<strong>Accepted values</strong>
<div><code>number</code></div>
</div>
</div>
<div class="side">
<?php code('animate'); ?>
<div class="viewer-header">Changing animation duration</div>
<div class="viewer-content">
<?php code('animate-duration'); ?>
<?php loadShowCSS('animate-duration'); ?>
</div>
</div>
</section>
<?php sect('keyboard-support'); ?>
<h2>Keyboard Support</h2>
<section>
<div class="view">
<p>Handles in the slider can receive keyboard focus and be moved by arrow keys.</p>
<p>When moved by the arrow keys on a keyboard, handles obey the <code>step</code> value for the range they are in.
When moving in a range that has no <code>step</code> value set, handles move by 10% of the range they are in.</p>
<p>Keyboard support can be disabled:</p>
<div class="example overflow">
<div id="slider-keyboard"></div>
<?php run('keyboard-support'); ?>
</div>
<div class="options">
<strong>Default</strong>
<div><code>true</code></div>
<strong>Accepted values</strong>
<div><code>true</code>, <code>false</code></div>
</div>
</div>
<div class="side">
<?php code('keyboard-support'); ?>
</div>
</section>
<?php sect('document-element'); ?>
<h2>Document Element</h2>
<section>
<div class="view">
<p>When moving the slider through documents, or in other advanced scenarios, the <code>documentElement</code> that events are bound to can be changed.</p>
<p>See <a href="https://github.com/leongersen/noUiSlider/pull/821">this pull request</a> for more information.</p>
<div class="options">
<strong>Default</strong>
<div>The document the slider is in</div>
<strong>Accepted values</strong>
<div>Any other document element</div>
</div>
</div>
<div class="side">
<?php code('document-element'); ?>
</div>
</section>