-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 942 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html lang="en-EN">
<head>
<meta charset="UTF-8" />
<title>Double Range</title>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="assets/css/demo.css" />
<link rel="stylesheet" type="text/css" href="assets/css/range.css?v=1.1.3" />
<script src="assets/js/range.js?v=1.1.3"></script>
</head>
<body>
<h1>Double Range</h1>
<p>Create a range with two thumbs.</p>
<div class="range" data-min="25000" data-max="75000" data-round="1" data-step="1000">
<input type="number" data-range-type="min" name="min" value="30000" />
<input type="number" data-range-type="max" name="max" value="70000" />
</div>
<script class="script-visible">
document.querySelectorAll(".range").forEach(function($item) {
new vanillaJsuRange($item);
});</script>
</body>
</html>