-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="./index.css" media="screen" title="no title" charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Aldrich|Roboto' rel='stylesheet' type='text/css'>
</head>
<body>
<h1>HadronJS Demo: Hard Particles in a Box (Elastic Collisions)</h1>
<div class="set-friction">
<label for="friction">Friction: </label>
<input type="text" name="friction" id="friction" value="0" />
<button type="button" name="Restart" id="restart">Restart</button>
</div>
<div class="canvas-cont">
<canvas id="canvas" width="750" height="750"></canvas>
</div>
<h2 id="kE"></h2>
<h3>Created by <a href="http://www.gauthamvaradarajan.com">Gautham Varadarajan</a></h3>
<h3><a href="https://github.com/gvaradarajan">Github</a> | <a href="https://www.linkedin.com/in/gautham-varadarajan-a88367114
">LinkedIn</a></h3>
<script type="text/javascript" src="./bundle.js">
</script>
</body>
</html>