-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 988 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 988 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Canvas Practice</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<canvas id="render"></canvas>
<canvas id="gravRender"></canvas>
<canvas id="sinRender"></canvas>
<div id="mainDisplay">
<dialog id="modalTest">
<div>
<h1>Select which option you'd like to see</h1>
<p>This is some pertinent text</p>
<button id="orbsGrow">Show Orbs Grow on Hover</button>
<button id="grav">Show Bouncy Balls</button>
<button id="sin">Show Sin Wave</button>
<button onclick="modalTest.close()">Close</button>
</div>
</dialog>
<button id="showMeOptions" onclick="modalTest.showModal()">Show Options</button>
</div>
</body>
</html>