-
Notifications
You must be signed in to change notification settings - Fork 0
/
parallax.html
47 lines (42 loc) · 1.85 KB
/
parallax.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Halloween Parallax</title>
<link rel="icon" href="favicon.ico"/>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="stylesheet" href="src/static/css/default.css">
<link rel="stylesheet" href="src/static/css/parallax.css">
</head>
<body>
<div class="navBar">
<div class="icon"><a href="/HUI">HUI</a></div>
<div class="cursor" color="#FF6912"></div>
</div>
<div class="eyeBox">
<div class="eye">
<div class="eyeBall"></div>
</div>
<div class="eye">
<div class="eyeBall"></div>
</div>
</div>
<section>
<img src="src/static/img/halloween1.png" data-speed="4" class="layer">
<img src="src/static/img/halloween2.png" data-speed="-7" class="layer">
<img src="src/static/img/halloween3.png" data-speed="4" class="layer">
<img src="src/static/img/halloween4.png" data-speed="-4" class="layer">
<img src="src/static/img/halloween5.png" data-speed="3" class="layer">
<img src="src/static/img/halloween6.png" data-speed="-5" class="layer">
<img src="src/static/img/halloween7.png" data-speed="7" class="layer">
<img src="src/static/img/halloween8.png" data-speed="-2" class="layer">
<img src="src/static/img/halloween9.png" data-speed="-3" class="layer">
<img src="src/static/img/halloween10.png" data-speed="5" class="layer">
<img src="src/static/img/halloween11.png" data-speed="-4" class="layer">
<img src="src/static/img/halloween12.png" data-speed="7" class="layer">
<h2 class="layer" data-speed="1">HALLOWEEN</h2>
</section>
</body>
<script src="src/static/js/parallax.js"></script>
<script src="src/static/js/cursor.js"></script>
</html>