-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
index.tpl
1551 lines (1384 loc) · 43.6 KB
/
index.tpl
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Examples for bootstrap-slider plugin">
<meta name="author" content="">
<title>Slider for Bootstrap Examples Page</title>
<!-- core CSS -->
<link href="<%= css.bootstrap %>" rel="stylesheet">
<link href="<%= css.slider %>" rel="stylesheet">
<!-- Hightlight.js Theme Styles -->
<link href="<%= css.highlightjs %>" rel="stylesheet">
<!-- Custom styles for this template -->
<style type='text/css'>
/* Space out content a bit */
body {
padding-top: 20px;
padding-bottom: 20px;
}
h1 small {
font-size: 51%;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 5px;
}
tr:nth-child(even){background-color: #e5e5e5}
th {
background-color: #00008B;
color: white;
}
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,
.marketing,
.footer {
padding-left: 15px;
padding-right: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
padding-bottom: 19px;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
/* Customize container */
.container {
min-width: 640px;
}
@media (min-width: 768px) {
.container {
max-width: 1000px;
}
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.title {
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
.header,
.footer {
padding-left: 0;
padding-right: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
/* Remove the bottom border on the jumbotron for visual effect */
.title {
border-bottom: 0;
}
}
.card {
background-color: #e0e0e0;
}
.slider-example {
padding-top: 10px;
padding-bottom: 55px;
margin: 35px 0;
}
#destroyEx5Slider, #ex6CurrentSliderValLabel, #ex7-enabled {
margin-left: 45px;
}
#ex6SliderVal {
color: green;
}
#slider12a .slider-track-high, #slider12c .slider-track-high {
background: green;
}
#slider12b .slider-track-low, #slider12c .slider-track-low {
background: red;
}
#slider12c .slider-selection {
background: yellow;
}
#slider22 .slider-selection {
background: #2196f3;
}
#slider22 .slider-rangeHighlight {
background: #f70616;
}
#slider22 .slider-rangeHighlight.category1 {
background: #FF9900;
}
#slider22 .slider-rangeHighlight.category2 {
background: #99CC00;
}
</style>
<style type='text/css'>
/* Example 1 custom styles */
#ex1Slider .slider-selection {
background: #BABABA;
}
/* Example 3 custom styles */
#RGB {
height: 20px;
background: rgb(128, 128, 128);
}
#RC .slider-selection {
background: #FF8282;
}
#RC .slider-handle {
background: red;
}
#GC .slider-selection {
background: #428041;
}
#GC .slider-handle {
background: green;
}
#BC .slider-selection {
background: #8283FF;
}
#BC .slider-handle {
border-bottom-color: blue;
}
#R, #G, #B {
width: 300px;
}
</style>
<script type='text/javascript' src="<%= js.modernizr %>"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
<!-- Highlight.js Styles -->
</head>
<body>
<div class="container">
<div id="top" class="jumbotron">
<h1>Slider for Bootstrap <small>bootstrap-slider.js</small></h1>
<p class="lead">
Examples for the <a target="_blank" href="https://github.com/seiyria/bootstrap-slider">bootstrap-slider</a> component.
</br>
</br>
Now compatible with <a target="_blank" href="https://getbootstrap.com/docs/4.0/getting-started/introduction/">Bootstrap 4</a>
<p>
</div>
<table>
<tr>
<th>Example Link</th>
<th>Example Description</th>
</tr>
<tr>
<td><a href="#example-1">Example 1</a></td>
<td>Basic example with custom formatter and colored selected region via CSS</td>
</tr>
<tr>
<td><a href="#example-2">Example 2</a></td>
<td>Range selector, options specified via data attribute</td>
</tr>
<tr>
<td><a href="#example-3">Example 3</a></td>
<td>Using events to work with the values and style the selection and handles via CSS. The tooltip is disabled and diferent shapes for the handles</td>
</tr>
<tr>
<td><a href="#example-4">Example 4</a></td>
<td>Vertical Slider with reversed values (largest to smallest)</td>
</tr>
<tr>
<td><a href="#example-5">Example 5</a></td>
<td>Destroy instance of slider by calling destroy() method on slider instance via JavaScript</td>
</tr>
<tr>
<td><a href="#example-6">Example 6</a></td>
<td>Able to bind to 'slide' JQuery event on slider, which is triggered whenever the slider is used</td>
</tr>
<tr>
<td><a href="#example-7">Example 7</a></td>
<td>Sliders can be enabled and disabled</td>
</tr>
<tr>
<td><a href="#example-8">Example 8</a></td>
<td>Tooltip can always be displayed</td>
</tr>
<tr>
<td><a href="#example-9">Example 9</a></td>
<td>Precision (number of places after the decimal) can be specified</td>
</tr>
<tr>
<td><a href="#example-10">Example 10</a></td>
<td>Setting custom handlers</td>
</tr>
<tr>
<td><a href="#example-11">Example 11</a></td>
<td>Using a custom step interval</td>
</tr>
<tr>
<td><a href="#example-12">Example 12</a></td>
<td>Coloring the low and high track segments</td>
</tr>
<tr>
<td><a href="#example-13">Example 13</a></td>
<td>Using tick marks and labels</td>
</tr>
<tr>
<td><a href="#example-14">Example 14</a></td>
<td>Using tick marks at specific positions</td>
</tr>
<tr>
<td><a href="#example-15">Example 15</a></td>
<td>With a logarithmic scale</td>
</tr>
<tr>
<td><a href="#example-16">Example 16</a></td>
<td>Focus the slider handle after a value changes</td>
</tr>
<tr>
<td><a href="#example-17">Example 17</a></td>
<td>Unusual tooltip positions</td>
</tr>
<tr>
<td><a href="#example-18">Example 18</a></td>
<td>Accessibility with ARIA labels</td>
</tr>
<tr>
<td><a href="#example-19">Example 19</a></td>
<td>Auto-Register data-provide="slider" Elements</td>
</tr>
<tr>
<td><a href="#example-20">Example 20</a></td>
<td>Slider-Elements initially hidden</td>
</tr>
<tr>
<td><a href="#example-21">Example 21</a></td>
<td>Create an input element with the <strong>data-provide="slider"</strong> attribute automatically turns it into a slider. Options can be supplied via <strong>data-slider-</strong> attributes</td>
</tr>
<tr>
<td><a href="#example-22">Example 22</a></td>
<td>Highlight ranges on slider with <strong>rangeHighlights</strong> attribute</td>
</tr>
<tr>
<td><a href="#example-23">Example 23</a></td>
<td>Using tick marks at specific positions</td>
</tr>
<tr>
<td><a href="#example-24">Example 24</a></td>
<td>rtl mode (auto)</td>
</tr>
<tr>
<td><a href="#example-25">Example 25</a></td>
<td>Lock selection to ticks</td>
</tr>
<tr>
<td><a href="#example-26">Example 26</a></td>
<td>Refresh method with optional `options` object</td>
</tr>
</table>
<div class="examples">
<div id="example-1" class='slider-example'>
<h3>Example 1: <a href="#top"><small>Back to Top</small></a></h3>
<p>Basic example with custom formatter and colored selected region via CSS.</p>
<div class="card card-body mb-3">
<input id="ex1" data-slider-id='ex1Slider' type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="14"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex1" data-slider-id='ex1Slider' type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="14"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$('#ex1').slider({
formatter: function(value) {
return 'Current value: ' + value;
}
});
// Without JQuery
var slider = new Slider('#ex1', {
formatter: function(value) {
return 'Current value: ' + value;
}
});
</code></pre>
<h5>CSS</h5>
<pre><code class="css">
#ex1Slider .slider-selection {
background: #BABABA;
}
</code></pre>
</div>
<div id="example-2" class='slider-example'>
<h3>Example 2: <a href="#top"><small>Back to Top</small></a></h3>
<p>Range selector, options specified via data attribute.</p>
<div class="card card-body mb-3 flex-row">
<span class="mr-1">Filter by price interval: </span><b class="mr-1">€ 10</b><input id="ex2" type="text" class="span2" value="" data-slider-min="10" data-slider-max="1000" data-slider-step="5" data-slider-value="[250,450]"/><b class="mr-1 ml-1">€ 1000</b>
</div>
<h5>HTML</h5>
<pre><code class="html">
Filter by price interval: <b>€ 10</b> <input id="ex2" type="text" class="span2" value="" data-slider-min="10" data-slider-max="1000" data-slider-step="5" data-slider-value="[250,450]"/> <b>€ 1000</b>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex2").slider({});
// Without JQuery
var slider = new Slider('#ex2', {});
</code></pre>
</div>
<div id="example-3" class='slider-example'>
<h3>Example 3: <a href="#top"><small>Back to Top</small></a></h3>
<p>Using events to work with the values and style the selection and handles via CSS. The tooltip is disabled and diferent shapes for the handles.</p>
<div class="card card-body mb-3">
<p>
<b>R</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="RC" id="R" data-slider-tooltip="hide" data-slider-handle="square" />
</p>
<p>
<b>G</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="GC" id="G" data-slider-tooltip="hide" data-slider-handle="round" />
</p>
<p>
<b>B</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="BC" id="B" data-slider-tooltip="hide" data-slider-handle="triangle" />
</p>
<div id="RGB"></div>
</div>
<h5>HTML</h5>
<pre><code class="html">
<p>
<b>R</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="RC" id="R" data-slider-tooltip="hide" data-slider-handle="square" />
</p>
<p>
<b>G</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="GC" id="G" data-slider-tooltip="hide" data-slider-handle="round" />
</p>
<p>
<b>B</b> <input type="text" class="span2" value="" data-slider-min="0" data-slider-max="255" data-slider-step="1" data-slider-value="128" data-slider-id="BC" id="B" data-slider-tooltip="hide" data-slider-handle="triangle" />
</p>
<div id="RGB"></div>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
var RGBChange = function() {
$('#RGB').css('background', 'rgb('+r.getValue()+','+g.getValue()+','+b.getValue()+')')
};
var r = $('#R').slider()
.on('slide', RGBChange)
.data('slider');
var g = $('#G').slider()
.on('slide', RGBChange)
.data('slider');
var b = $('#B').slider()
.on('slide', RGBChange)
.data('slider');
</code></pre>
<h5>CSS</h5>
<pre><code class="css">
#RGB {
height: 20px;
background: rgb(128, 128, 128);
}
#RC .slider-selection {
background: #FF8282;
}
#RC .slider-handle {
background: red;
}
#GC .slider-selection {
background: #428041;
}
#GC .slider-handle {
background: green;
}
#BC .slider-selection {
background: #8283FF;
}
#BC .slider-handle {
border-bottom-color: blue;
}
#R, #G, #B {
width: 300px;
}
</code></pre>
</div>
<div id="example-4" class='slider-example'>
<h3>Example 4: <a href="#top"><small>Back to Top</small></a></h3>
<p>Vertical Slider with reversed values (largest to smallest).</p>
<div class="card card-body mb-3">
<input id="ex4" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="-3" data-slider-orientation="vertical"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex4" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="-3" data-slider-orientation="vertical"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex4").slider({
reversed : true
});
// Without JQuery
var slider = new Slider("#ex4", {
reversed : true
});
</code></pre>
</div>
<div id="example-5" class='slider-example'>
<h3>Example 5: <a href="#top"><small>Back to Top</small></a></h3>
<p>Destroy instance of slider by calling destroy() method on slider instance via JavaScript.</p>
<div class="card card-body mb-3 flex-row">
<input id="ex5" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="0"/>
<button id="destroyEx5Slider" class="btn btn-danger ml-3">Click to Destroy</button>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex5" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="0"/>
<button id="destroyEx5Slider" class='btn btn-danger'>Click to Destroy</button>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex5").slider();
// Without JQuery
var slider = new Slider('#ex5');
$("#destroyEx5Slider").click(function() {
// With JQuery
$("#ex5").slider('destroy');
// Without JQuery
slider.destroy();
});
</code></pre>
</div>
<div id="example-6" class='slider-example'>
<h3>Example 6: <a href="#top"><small>Back to Top</small></a></h3>
<p>Able to bind to 'slide' JQuery event on slider, which is triggered whenever the slider is used.</p>
<div class="card card-body mb-3 flex-row">
<input id="ex6" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="3"/>
<span id="ex6CurrentSliderValLabel">Current Slider Value: <span id="ex6SliderVal">3</span></span>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex6" type="text" data-slider-min="-5" data-slider-max="20" data-slider-step="1" data-slider-value="3"/>
<span id="ex6CurrentSliderValLabel">Current Slider Value: <span id="ex6SliderVal">3</span></span>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex6").slider();
$("#ex6").on("slide", function(slideEvt) {
$("#ex6SliderVal").text(slideEvt.value);
});
// Without JQuery
var slider = new Slider("#ex6");
slider.on("slide", function(sliderValue) {
document.getElementById("ex6SliderVal").textContent = sliderValue;
});
</code></pre>
</code></pre>
</div>
<div id="example-7" class='slider-example'>
<h3>Example 7: <a href="#top"><small>Back to Top</small></a></h3>
<p>Sliders can be enabled and disabled.</p>
<div class="card card-body mb-3 flex-row">
<input id="ex7" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="false"/>
<input id="ex7-enabled" type="checkbox" class="mr-1"/> Enabled
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex7" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="false"/>
<input id="ex7-enabled" type="checkbox"/> Enabled
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex7").slider();
// Without JQuery
var slider = new Slider("#ex7");
$("#ex7-enabled").click(function() {
if(this.checked) {
// With JQuery
$("#ex7").slider("enable");
// Without JQuery
slider.enable();
}
else {
// With JQuery
$("#ex7").slider("disable");
// Without JQuery
slider.disable();
}
});
</code></pre>
</div>
<div id="example-8" class='slider-example'>
<h3>Example 8: <a href="#top"><small>Back to Top</small></a></h3>
<p>Tooltip can always be displayed.</p>
<div class="card card-body mb-3">
<input id="ex8" data-slider-id='ex1Slider' type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="14"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex8" data-slider-id='ex1Slider' type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="14"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex8").slider({
tooltip: 'always'
});
// Without JQuery
var slider = new Slider("#ex8", {
tooltip: 'always'
});
</code></pre>
</div>
<div id="example-9" class='slider-example'>
<h3>Example 9: <a href="#top"><small>Back to Top</small></a></h3>
<p>Precision (number of places after the decimal) can be specified.</p>
<div class="card card-body mb-3">
<input id="ex9" type="text"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex9" type="text"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex9").slider({
precision: 2,
value: 8.115 // Slider will instantiate showing 8.12 due to specified precision
});
// Without JQuery
var slider = new Slider("#ex9", {
precision: 2,
value: 8.115 // Slider will instantiate showing 8.12 due to specified precision
});
</code></pre>
</div>
<div id="example-10" class='slider-example'>
<h3>Example 10: <a href="#top"><small>Back to Top</small></a></h3>
<p>Setting custom handlers.</p>
<div class="card card-body mb-3">
<input id="ex10" type="text" data-slider-handle="custom"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex10" type="text" data-slider-handle="custom"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex10").slider({});
// Without JQuery
var slider = new Slider("#ex10", {});
</code></pre>
<h5>CSS</h5>
<pre><code class="css">
.slider-handle.custom {
background: transparent none;
/* You can customize the handle and set a background image */
}
/* Or display content like unicode characters or fontawesome icons */
.slider-handle.custom::before {
line-height: 20px;
font-size: 20px;
content: '\2605'; /*unicode star character*/
color: #726204;
}
</code></pre>
</div>
<div id="example-11" class='slider-example'>
<h3>Example 11: <a href="#top"><small>Back to Top</small></a></h3>
<p>Using a custom step interval.</p>
<div class="card card-body mb-3">
<input id="ex11" type="text" data-slider-handle="custom"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex11" type="text" data-slider-handle="custom"/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex11").slider({step: 20000, min: 0, max: 200000});
// Without JQuery
var slider = new Slider("#ex11", {
step: 20000,
min: 0,
max: 200000
});
</code></pre>
</div>
<div id="example-12" class='slider-example'>
<h3>Example 12: <a href="#top"><small>Back to Top</small></a></h3>
<p>Coloring the low and high track segments.</p>
<div class="card card-body mb-3">
<div class="mb-3">
Single-value slider, high track:<br/>
<input id="ex12a" type="text"/><br/>
Note that there is no low track on the single-value slider. The
area lesser than the value of the handle is the selection.
</div>
<div class="mb-3">
Range slider, low track:<br/>
<input id="ex12b" type="text"/>
</div>
<div>
Range slider, low and high tracks, and selection:<br/>
<input id="ex12c" type="text"/>
</div>
</div>
<h5>HTML</h5>
<pre><code class="html">
<!-- Single-value slider, high track: -->
<input id="ex12a" type="text"/><br/>
Note that there is no low track on the single-value slider. The area to lesser than the value of the handle is the selection.
<!-- Range slider, low track: -->
<input id="ex12b" type="text"/><br/>
<!-- Range slider, low and high tracks, and selection: -->
<input id="ex12c" type="text"/><br/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex12a").slider({ id: "slider12a", min: 0, max: 10, value: 5 });
$("#ex12b").slider({ id: "slider12b", min: 0, max: 10, range: true, value: [3, 7] });
$("#ex12c").slider({ id: "slider12c", min: 0, max: 10, range: true, value: [3, 7] });
// Without JQuery
var sliderA = new Slider("#ex12a", { id: "slider12a", min: 0, max: 10, value: 5 });
var sliderB = new Slider("#ex12b", { id: "slider12b", min: 0, max: 10, range: true, value: [3, 7] });
var sliderC = new Slider("#ex12c", { id: "slider12c", min: 0, max: 10, range: true, value: [3, 7] });
</code></pre>
<h5>CSS</h5>
<pre><code class="css">
#slider12a .slider-track-high, #slider12c .slider-track-high {
background: green;
}
#slider12b .slider-track-low, #slider12c .slider-track-low {
background: red;
}
#slider12c .slider-selection {
background: yellow;
}
</code></pre>
</div>
<div id="example-13" class='slider-example'>
<h3>Example 13: <a href="#top"><small>Back to Top</small></a></h3>
<p>Using tick marks and labels.</p>
<div class="card card-body mb-3">
<input id="ex13" type="text"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex13" type="text" data-slider-ticks="[0, 100, 200, 300, 400]" data-slider-ticks-snap-bounds="30" data-slider-ticks-labels='["$0", "$100", "$200", "$300", "$400"]'/>
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex13").slider({
ticks: [0, 100, 200, 300, 400],
ticks_labels: ['$0', '$100', '$200', '$300', '$400'],
ticks_snap_bounds: 30
});
// Without JQuery
var slider = new Slider("#ex13", {
ticks: [0, 100, 200, 300, 400],
ticks_labels: ['$0', '$100', '$200', '$300', '$400'],
ticks_snap_bounds: 30
});
</code></pre>
</div>
<div id="example-14" class='slider-example'>
<h3>Example 14: <a href="#top"><small>Back to Top</small></a></h3>
<p>Using tick marks at specific positions.</p>
<div class="card card-body mb-3">
<input id="ex14" type="text"/>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex14" type="text" data-slider-ticks="[0, 100, 200, 300, 400]" data-slider-ticks-snap-bounds="30" data-slider-ticks-labels='["$0", "$100", "$200", "$300", "$400"]' data-slider-ticks-positions="[0, 30, 70, 90, 100]" />
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex14").slider({
ticks: [0, 100, 200, 300, 400],
ticks_positions: [0, 30, 70, 90, 100],
ticks_labels: ['$0', '$100', '$200', '$300', '$400'],
ticks_snap_bounds: 30
});
// Without JQuery
var slider = new Slider("#ex14", {
ticks: [0, 100, 200, 300, 400],
ticks_positions: [0, 30, 70, 90, 100],
ticks_labels: ['$0', '$100', '$200', '$300', '$400'],
ticks_snap_bounds: 30
});
</code></pre>
</div>
<div id="example-15" class='slider-example'>
<h3>Example 15: <a href="#top"><small>Back to Top</small></a></h3>
<p>With a logarithmic scale.</p>
<div class="card card-body mb-3">
<input id="ex15" type="text" data-slider-min="1000" data-slider-max="10000000" data-slider-step="5" />
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex15" type="text" data-slider-min="1000" data-slider-max="10000000" data-slider-step="5" />
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex15").slider({
min: 1000,
max: 10000000,
scale: 'logarithmic',
step: 10
});
// Without JQuery
var slider = new Slider('#ex15', {
min: 1000,
max: 10000000,
scale: 'logarithmic',
step: 10
});
</code></pre>
</div>
<div id="example-16" class="slider-example">
<h3>Example 16: <a href="#top"><small>Back to Top</small></a></h3>
<p>Focus the slider handle after a value change.</p>
<div class="card card-body mb-3">
<div class="mb-3">
Single-value slider:<br/>
<input id="ex16a" type="text"/>
</div>
<div>
Range slider:<br/>
<input id="ex16b" type="text"/>
</div>
</div>
<h5>HTML</h5>
<pre><code class="html">
<!-- Single-value slider: -->
<input id="ex16a" type="text"/><br/>
<!-- Range slider: -->
<input id="ex16b" type="text"/><br/>
Note that the slider handle that caused the value change is focused.
</code></pre>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex16a").slider({ min: 0, max: 10, value: 0, focus: true });
$("#ex16b").slider({ min: 0, max: 10, value: [0, 10], focus: true });
// Without JQuery
var sliderA = new Slider("#ex16a", { min: 0, max: 10, value: 0, focus: true });
var sliderB = new Slider("#ex16b", { min: 0, max: 10, value: [0, 10], focus: true });
</code></pre>
</div>
<div id="example-17" class="slider-example">
<h3>Example 17: <a href="#top"><small>Back to Top</small></a></h3>
<p>Unusual tooltip positions.</p>
<div class="card card-body mb-3">
<div class="mb-4">
Horizontal slider with tooltip on the bottom<br/>
<input id="ex17a" type="text"/>
</div>
<div>
<div class="mb-2">Vertical slider with tooltip on the left<br/></div>
<input id="ex17b" type="text"/>
</div>
</div>
<h5>HTML</h5>
<pre><code class="html">
<input id="ex17a" type="text"/>
<input id="ex17b" type="text"/>
</code></pre>
<h5>JS</h5>
<pre><code class="js">
// With JQuery
$("#ex17a").slider({
min: 0,
max: 10,
value: 0,
tooltip_position:'bottom'
});
$("#ex17b").slider({
min: 0,
max: 10,
value: 0,
orientation: 'vertical',
tooltip_position:'left'
});
// Without JQuery
var sliderA = new Slider("#ex17a", {
min: 0,
max: 10,
value: 0,
tooltip_position:'bottom'
});
var sliderB = new Slider("#ex17b", {
min: 0,
max: 10,
value: 0,
orientation: 'vertical',
tooltip_position:'left'
});
</code></pre>
</div>
<div id="example-18" class="slider-example">
<h3>Example 18: <a href="#top"><small>Back to Top</small></a></h3>
<p>Accessibility with labels only visible to screenreaders.</p>
<div class="card card-body mb-3">
<div class="mb-3">
Slider with single value and label:<br/>
<span id="ex18-label-1" class="sr-only">
Example slider label
</span>
<input id="ex18a" type="text" />
</div>
<div>
Range slider with multiple labels:<br/>
<span id="ex18-label-2a" class="sr-only">
Example low value
</span>
<span id="ex18-label-2b" class="sr-only">
Example high value
</span>
<input id="ex18b" type="text" />
</div>
</div>
<h5>HTML</h5>
<pre><code class="html">
<span id="ex18-label-1" class="sr-only">Example slider label</span>
<input id="ex18a" type="text"/>
<span id="ex18-label-2a" class="sr-only">Example low value</span>
<span id="ex18-label-2b" class="sr-only">Example high value</span>
<input id="ex18b" type="text"/>
</pre></code>
<h5>JavaScript</h5>
<pre><code class="js">
// With JQuery
$("#ex18a").slider({
min: 0,
max: 10,
value: 5,
labelledby: 'ex18-label-1'
});
$("#ex18b").slider({
min: 0,
max: 10,
value: [3, 6],
labelledby: ['ex18-label-2a', 'ex18-label-2b']
});
// Without JQuery
var sliderA = new Slider("#ex18a", {
min: 0,
max: 10,
value: 5,