-
Notifications
You must be signed in to change notification settings - Fork 0
/
simpleSliderDemo.html
52 lines (52 loc) · 1.53 KB
/
simpleSliderDemo.html
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
<!DOCTYPE html>
<html>
<head>
<title>Simple Slider Demo</title>
<link href="simpleSlider.css" type="text/css" rel="stylesheet"/>
<link href="simpleSliderDemo.css" type="text/css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="simpleSlider.js" type="text/javascript"></script>
<script src="simpleSliderDemo.js" type="text/javascript"></script>
</head>
<body>
<h1>SimpleSlider Demo Page</h1>
<div id="main">
<div id="default">
<h2>Defaults</h2>
<div class="result">0</div>
<div id="slide-one"></div>
</div>
<div id="orange">
<h2>Colors set to Orange</h2>
<div class="result">0</div>
<div id="slide-orange"></div>
</div>
<div id="big">
<h2>Width 300px, Height 100px</h2>
<div class="result">0</div>
<div id="slide-big"></div>
</div>
<div id="min32">
<h2>Min value = 32, Max = 212</h2>
<div class="result">32</div>
<div id="slide-min32"></div>
</div>
<div id="default90">
<h2>Default value = 90</h2>
<div class="result">90</div>
<div id="slide-default90"></div>
</div>
<div id="handleRadiusHalf">
<h2>Handle Radius Half of Width</h2>
<div class="result">0</div>
<div id="slide-handleHalf"></div>
</div>
<div id="mechanized">
<h2>With <em>mechanizeTrigger</em> Option</h2>
<h3>(Try typing in the box)</h3>
<input type="text" name="mechanizer" id="mechanizer" maxlength=3 class="result" />
<div id="slide-mech"></div>
</div>
</div>
</body>
</html>