-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (91 loc) · 2.91 KB
/
Copy pathindex.html
File metadata and controls
104 lines (91 loc) · 2.91 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
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
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 - Page Not Found</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: #fff;
overflow: hidden;
flex-direction: column;
}
.container {
text-align: center;
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(15px);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 20px 40px rgba(0,0,0,0.4);
animation: fadeIn 1.2s ease;
z-index: 2;
}
h1 {
font-size: 120px;
letter-spacing: 5px;
background: linear-gradient(90deg, #00dbde, #fc00ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: float 3s ease-in-out infinite;
}
h2 { margin-top: 10px; font-size: 28px; opacity: 0.9; }
p { margin-top: 15px; font-size: 16px; opacity: 0.7; }
.btn {
display: inline-block;
margin: 15px;
padding: 12px 30px;
border-radius: 30px;
background: linear-gradient(90deg, #00dbde, #fc00ff);
color: #fff;
text-decoration: none;
font-weight: bold;
transition: 0.3s;
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
cursor: pointer;
}
.btn:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
canvas {
display: none;
margin-top: 20px;
border-radius: 10px;
background: #000;
box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes fadeIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
.particle {
position: absolute;
width: 6px;
height: 6px;
background: rgba(255,255,255,0.6);
border-radius: 50%;
animation: move 10s linear infinite;
}
@keyframes move {
from { transform: translateY(100vh); opacity: 0; }
to { transform: translateY(-10vh); opacity: 1; }
}
</style>
</head>
<body>
<div class="container" id="main">
<h1>祝好</h1>
<h2>我只能离开</h2>
</div>
</body>
</html>