-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (28 loc) · 1.14 KB
/
index.html
File metadata and controls
36 lines (28 loc) · 1.14 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Site Properities -->
<title>Rangestepper - Demo</title>
<link rel="stylesheet" type="text/css" href="css/rangestepper.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
<script src="js/rangestepper.js"></script>
</head>
<body id="sink" style="background: #363636;text-align: center;">
<h2 style="color:#fff; margin-bottom: 200px;">GitHub Repo:
<a style="color:aqua; text-decoration:none; font-size: 80%;" href="https://github.com/raduamarie/rangestepper">https://github.com/raduamarie/rangestepper</a>
</h2>
<div id="demo-rangestepper" style="width: 50%; display: inline-block;"></div>
<script type="text/javascript">
$('#demo-rangestepper').rangestepper({
inputName: 'rangestepper',
minVal: -10,
maxVal: 10,
subscript: true
});
</script>
</body>
</html>