-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
95 lines (76 loc) · 2.53 KB
/
404.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!--
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>- 404 Page</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="about">
<a class="bg_links social portfolio" href="#">
<span class="icon"></span>
</a>
<a class="bg_links social dribbble" href="#">
<span class="icon"></span>
</a>
<a class="bg_links social linkedin" href="#">
<span class="icon"></span>
</a>
<a class="bg_links logo"></a>
</div>
<nav>
<div class="menu">
<p class="website_name">LOGO</p>
<div class="menu_links">
<a href class="link">about</a>
<a href class="link">projects</a>
<a href class="link">contacts</a>
</div>
<div class="menu_icon">
<span class="icon"></span>
</div>
</div>
</nav>
<section class="wrapper">
<div class="container">
<div id="scene" class="scene" data-hover-only="false">
<div class="circle" data-depth="1.2"></div>
<div class="one" data-depth="0.9">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="two" data-depth="0.60">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="three" data-depth="0.40">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<p class="p404" data-depth="0.50">404</p>
<p class="p404" data-depth="0.10">404</p>
</div>
<div class="text">
<article>
<p>Uh oh! 看来你迷路了。<br>请点击按钮返回首页!</p>
<a href="../"><button>返回主页!</button></a>
</article>
</div>
</div>
</section>
<script src="js/parallax.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>