forked from cristurm/nyan-cat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (39 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Nyan Cat - HTML5+CSS3+JS</title>
<link rel="stylesheet" href="css/nyan.css"/>
</head>
<body>
<div class="sparks-combo">
<div class="spark"></div>
<div class="spark"></div>
<div class="spark"></div>
<div class="spark"></div>
</div>
<div id="wave-a" class="hot rainbow"></div>
<div id="wave-a" class="cold rainbow"></div>
<div id="wave-b" class="hot rainbow"></div>
<div id="wave-b" class="cold rainbow"></div>
<div id="nyan-cat" class="frame1">
<div id="tail"></div>
<div id="paws"></div>
<div id="pop-tarts-body">
<div id="pop-tarts-body-cream"></div>
</div>
<div id="head">
<div id="face"></div>
</div>
</div>
<audio autoplay="true" loop="true">
<source src="audio/nyan-cat.ogg" type="audio/ogg" />
<source src="audio/nyan-cat.mp3" type="audio/mpeg" />
</audio>
<!-- Libs -->
<script src="https://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- Nyan Stuff -->
<script src="js/nyan.js"></script>
</body>
</html>