-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sprite Animation Techniques</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<canvas id="canvas1">
Your browser does not support the HTML5 canvas tag.
</canvas>
<div class="controls">
<label for="animations">
Choose Animation
</label>
<select id="animations" name="animations">
<option value="idle">Idle</option>
<option value="jump">Jump</option>
<option value="fall">Fall</option>
<option value="run">Run</option>
<option value="dizzy">Dizzy</option>
<option value="sit">Sit</option>
<option value="roll">Roll</option>
<option value="bite">Bite</option>
<option value="ko">Ko</option>
<option value="getHit">Get Hit</option>
</select>
</div>
<!-- Script -->
<script type="text/javascript" src="script.js"></script>
</body>
</html>