-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 866 Bytes
/
index.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://wasper1.github.io/rotating-slider/src/rotating-slider.js"></script>
<link rel="stylesheet" href="https://wasper1.github.io/rotating-slider/src/rotating-slider.css">
</head>
<body>
<div>
Integers
<h1 id="rotating-slider1"/>
</div>
<div>
Decimal numbers
<h1 style="width: 50%; margin: auto;" id="rotating-slider2"/>
</div>
<script>
RotatingSlider("#rotating-slider1", {min: 1, max: 100, step: 1}, 10).setChangeCallback(function (val) {
console.log(val);
});
RotatingSlider("#rotating-slider2", {min: 1, max: 5, step: 0.5}, 4.5).setChangeCallback(function (val) {
console.log(val);
});
</script>
</body>
</html>