-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (33 loc) · 1.21 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Pendulos</title>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css'>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-2">
<h3>Controles</h3><br>
<p>Bolitas</p>1 < ====== > 20
<input id="nBolas" type="range" min="1" max="20"
value="12" style="width:100px">
<br><p>Desaceleracion</p>0 < ====== > 2
<input id="desacc" type="range" min="0" max="2" value="2" style="width:100px">
<br><p>Angulo inicial</p>9 < ====== > 90
<input id="angIni" type="range" min="1" max="10" value="2" style="width:100px">
<br><p>Ciclos</p>6 < ====== > 24
<input id="nCiclos" type="range" min="6" max="24"
value="12" style="width:100px">
<br><p>Numeros?</p><input id="numeros" type="checkbox">
</div>
<div class="col-xs-12 col-sm-10">
<canvas id="myCanvas" width="1000" height="600" style="border: 1px solid">
</canvas>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>