-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 1.32 KB
/
index.html
File metadata and controls
26 lines (24 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.sound.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="SuperBase.js"></script>
<script src="functionality.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<p>
<input type="number" class="variable" id="a" value="30" onkeypress="this.style.width = Math.round((this.value.length + 2) * 7.5) + 'px';">x<sup>2</sup> +
<input type="number" class="variable" id="h" value="63" onkeypress="this.style.width = Math.round((this.value.length + 2) * 7.5) + 'px';">xy +
<input type="number" class="variable" id="b" value="-77" onkeypress="this.style.width = Math.round((this.value.length + 2) * 7.5) + 'px';"> y<sup>2</sup> =
<input type="number" class="variable" id="n" value="1" onkeypress="this.style.width = Math.round((this.value.length + 2) * 7.5) + 'px';">
<button onclick="proceed()">START</button>
</p>
<p id="log"></p>
<script src="sketch.js"></script>
</body>
</html>