-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdancefloor.html
More file actions
23 lines (22 loc) · 930 Bytes
/
dancefloor.html
File metadata and controls
23 lines (22 loc) · 930 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/growingDancer.js"></script>
<script src="src/wackyDancer.js"></script>
</head>
<body>
<div class="topbar">
<span class="title">object dance party</span>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="BlinkyDancer">add a blinky dancer</a>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="GrowingDancer">add a growing dancer</a>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="WackyDancer">add a wacky dancer</a>
<a href="#" class="addLineupButton">line up!</a>
</div>
<script src="src/init.js"></script>
</body>
</html>