-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdancefloor.html
More file actions
23 lines (23 loc) · 962 Bytes
/
dancefloor.html
File metadata and controls
23 lines (23 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Object Dance Party</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="lib/jquery.js"></script>
<script src="src/dancer.js"></script>
<script src="src/blinkyDancer.js"></script>
<script src="src/flipTurnDancer.js"></script>
<script src="src/wormDancer.js"></script>
</head>
<body>
<div class="topbar">
<span class="title">object dance party</span>
<a href="#" class="addDancerButton" data-dancer-type="makeBlinkyDancer">add a blinky dancer</a>
<a href="#" class="addDancerButton" data-dancer-type="makeFlipTurnDancer">add a flip turn dancer</a>
<a href="#" class="addDancerButton" data-dancer-type="makeWormDancer">add a worm dancer</a>
<a href="#" class="lineupDancerButton">lineup dancers</a>
<a href="#" class="pairDancerButton">pair dancers</a>
</div>
<script src="src/init.js"></script>
</body>
</html>