-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlevel-player.html
More file actions
32 lines (31 loc) · 987 Bytes
/
level-player.html
File metadata and controls
32 lines (31 loc) · 987 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Custom Level Player!</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js"></script>
</head>
<body>
<center><h1>Custom Level Player!</h1></center>
<div id=gamecontainercontainer>
<div id=infocolumn>
<center>
<button class=cssbutton id=startme onclick="playCustomLevel()">
Start Game!
</button>
<!-- <button onclick='levelSwitch()'>Next LVL</button> -->
</center>
<div id=powerupcontainer> <img id=clock src='assets/unclock20.png' width=50 height=50> x <span id=powernumber>0</span> </div>
<div id=progcontainer> <div id="progress-bar"></div></div>
</div>
<script src="script.js">
</script>
<script src="leveleditor.js">
</script>
</div>
<a href=index.html>Main Game!</a>
<a href=level-editor.html>Level Editor!</a>
</body>
</html>