-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (72 loc) · 2.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<!-- Author: David Bang-->
<html>
<head>
<meta charset="utf-8">
<title>String Wave</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<style type="text/css" media="screen">
button {
width: 150px !important;
}
</style>
</head>
<body>
<div data-role="page" id="pulseCollision">
<div data-role="header">
<h1>Adding Two Sine Waves</h1>
</div>
<div data-role="content">
<canvas id="canvas1" width="800" height="450">
</canvas>
<div id="controlPanel" data-role="controlgroup" data-type="horizontal">
<button id="pause">Start</button>
<button id="stepback">Step Back</button>
<button id="stepforward">Step Forward</button>
<button id="reset">Reset</button>
<br><b>Parameters can be adjusted during pause</b><br><br>
<form id = "test">
<div id="green">
Green Height
<input id="ampl_1" data-type="range" type="number" value="60" max="120" min="0" step="5" />
</div>
<div id="red">
Red Height
<input id="ampl_2" data-type="range" type="number" value="60" max="120" min="0" step="5" />
</div>
<div id="green">
Green Wave Number
<input id="waveNumber_1" data-type="range" type="number" value="1" max="5" min="0" step=".2" />
</div>
<div id="red">
Red Wave Number
<input id="waveNumber_2" data-type="range" type="number" value="1" max="5" min="0" step=".2" />
</div>
<div id="green">
Green Wave Frequency
<input id="waveFreq_1" data-type="range" type="number" value="1" max="5" min="-5" step="0.2" />
</div>
<div id="red">
Red Wave Frequency
<input id="waveFreq_2" data-type="range" type="number" value="1" max="5" min="-5" step="0.2" />
</div>
</form>
<style>
#green {
width:50%;
float:left;
}
#red {
width:50%;
float:right;
}
</style>
</div>
<div id="log">
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript" src="addingSineWaves.js"></script>
</body>
</html>