-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
26 lines (26 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex">
<title>Gear Toy</title>
<link rel="stylesheet" href="./gear-toy.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.3.3/d3.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5/dat.gui.min.js"></script>
<script type="text/javascript" src="./gears.d3.js"></script>
<script type="text/javascript" src="./gear-toy.js"></script>
</head>
<body>
<div class="container">
<h1>Gear Toy</h1>
<div class="nav"><a href="http://brm.io/gears-d3-js/">Project page</a> <span class="nav-sep">·</span> <a href="https://github.com/liabru/gears-d3-js">GitHub</a></div>
<ul>
<li>Click and drag the gears to move them, use the toolbar on the right to change how they look</li>
</ul>
<div class="gears-d3-canvas"></div>
</div>
</body>
</html>