-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (33 loc) · 1.49 KB
/
index.html
File metadata and controls
45 lines (33 loc) · 1.49 KB
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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>#codevember - Day 4: Sapphire</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="page">
<div class="data">
<h1>Sapphire</h1>
<h2>#Codevember</h2>
<p>Click and open all chests!</p>
<a class="ghost" href="https://twitter.com/Manz">Code by Manz</a>
<a class="ghost" href="http://mirrorimage.ocremix.org/">Music by WillRock/DaMonz</a>
</div>
<div id="topscreen">
<div class="animated top top1 sprite"></div>
<div class="animated top top2 sprite"></div>
<div class="animated top top3 sprite"></div>
</div>
<div id="screen">
<img class="animated chest chest1 sprite" data-num="1" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/closed-chest.png">
<img class="animated chest chest2 sprite" data-num="2" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/closed-chest.png">
<img class="animated chest chest3 sprite" data-num="3" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/closed-chest.png">
</div>
</div>
<audio id="song" src="https://cdn.jsdelivr.net/gh/ManzDev/codevember2017/assets/hylian-lemon-by-willrock-and-damonz.mp3" autoplay></audio>
<script src='https://cdnjs.cloudflare.com/ajax/libs/three.js/84/three.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>