-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 876 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
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Javascript Sliders</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="scratchpad.js" type="text/javascript">
</script>
</head>
<body>
<div class="red box">
<form>
<input type="range" min="0" max="11" value="0"
onchange="fibSlider(this)">
<button type="button" onclick="fibButton(this)">Fib(0)</button>
</form>
</div>
<div class="green box">
<form>
<input type="range" min="0" max="11" value="0"
onchange="pellSlider(this)">
<button type="button" onclick="pellButton(this)">Pell(0)</button>
</form>
</div>
<div class="blue box">
<form>
<input type="range" min="0" max="11" value="0"
onchange="tribSlider(this)">
<button type="button" onclick="tribButton(this)">Trib(0)</button>
</form>
</div>
</body>
</html>