[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 页面未找到</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: #0d0d0d;
overflow: hidden;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
/* 动态渐变背景 */
.background {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #ff007a, #00ddeb, #ffbb00, #8a2be2);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
filter: blur(80px);
opacity: 0.8;
}
@keyframes gradientShift {
0% { background-position: 0% 0%; }
50% { background-position: 100% 100%; }
100% { background-position: 0% 0%; }
}
/* 漂浮光点 */
.glows {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
.glow {
position: absolute;
background: rgba(255, 255, 255, 0.5);
border-radius: 50%;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
animation: floatGlow infinite ease-in-out;
}
@keyframes floatGlow {
0% { transform: translateY(0) scale(1); opacity: 0.3; }
50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
100% { transform: translateY(0) scale(1); opacity: 0.3; }
}
/* 主容器 */
.container {
position: relative;
z-index: 2;
text-align: center;
padding: 80px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 30px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
max-width: 90%;
transform: perspective(1000px) rotateX(5deg);
animation: containerFloat 6s infinite ease-in-out;
}
@keyframes containerFloat {
0%, 100% { transform: perspective(1000px) rotateX(5deg) translateY(0); }
50% { transform: perspective(1000px) rotateX(5deg) translateY(-20px); }
}
h1 {
font-size: 180px;
margin: 0;
color: #fff;
text-shadow: 0 0 30px rgba(255, 0, 122, 0.8), 0 0 60px rgba(0, 221, 235, 0.6);
letter-spacing: 5px;
font-weight: 900;
background: linear-gradient(90deg, #ff007a, #00ddeb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: textGlow 4s infinite alternate;
}
@keyframes textGlow {
0% { text-shadow: 0 0 30px rgba(255, 0, 122, 0.8), 0 0 60px rgba(0, 221, 235, 0.6); }
100% { text-shadow: 0 0 50px rgba(255, 0, 122, 1), 0 0 80px rgba(0, 221, 235, 0.8); }
}
p {
font-size: 28px;
line-height: 1.6;
color: #fff;
margin: 30px 0;
opacity: 0.9;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
a {
text-decoration: none;
color: #fff;
font-weight: bold;
font-size: 18px;
padding: 18px 40px;
border-radius: 50px;
background: linear-gradient(135deg, #ff007a, #00ddeb);
box-shadow: 0 10px 30px rgba(255, 0, 122, 0.5);
transition: all 0.5s ease;
position: relative;
overflow: hidden;
}
a::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.6s ease, height 0.6s ease;
}
a:hover::before {
width: 300px;
height: 300px;
}
a:hover {
transform: scale(1.1) translateY(-5px);
box-shadow: 0 15px 40px rgba(255, 0, 122, 0.8);
}
/* 移动端适配 */
@media (max-width: 600px) {
.container {
padding: 40px;
}
h1 {
font-size: 100px;
}
p {
font-size: 20px;
}
a {
padding: 14px 30px;
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="background"></div>
<div class="glows" id="glows"></div>
<div class="container">
<h1>404</h1>
<p>现实裂隙已开启,<br>此路不通,愿您找到新维度。</p>
<a href="/">返回原点</a>
</div>
<script>
// 生成漂浮光点
const glowsDiv = document.getElementById('glows');
const glowCount = 20;
for (let i = 0; i < glowCount; i++) {
const glow = document.createElement('div');
glow.classList.add('glow');
const size = Math.random() * 20 + 10;
glow.style.width = `${size}px`;
glow.style.height = glow.style.width;
glow.style.left = `${Math.random() * 100}%`;
glow.style.top = `${Math.random() * 100}%`;
glow.style.animationDuration = `${Math.random() * 4 + 2}s`;
glow.style.animationDelay = `${Math.random() * 2}s`;
glowsDiv.appendChild(glow);
}
</script>
</body>
</html>