-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdancefloor.html
26 lines (26 loc) · 1.2 KB
/
dancefloor.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>
<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/fadeDancer.js"></script>
<script src="src/newDancer.js"></script>
<script src="src/newDancer2.js"></script>
</head>
<body>
<div class="topbar">
<span class="title">object dance party</span>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="makeBlinkyDancer">add a Charmander</a>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="makeFadingDancer">add a Pikachu</a>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="newDancer">add a Bulbasaur</a>
<a href="#" class="addDancerButton" data-dancer-maker-function-name="newDancer2">add a Squirtle</a>
<a href="#" class="posButton" id="lineUpButton">Line up dancers</a>
<a href="#" class="posButton" id="randomizer">Random positions</a>
<a href="#" class="posButton" id="autoShuffle">Enable Shuffle</a>
</div>
<script src="src/init.js"></script>
</body>
</html>