<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D粒子动画特效 - 5cq.homes</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #000;
color: #fff;
overflow: hidden;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 1;
}
.content {
position: relative;
z-index: 2;
text-align: center;
padding: 20px;
max-width: 800px;
}
h1 {
font-size: 3.5rem;
margin-bottom: 20px;
background: linear-gradient(90deg, #00dbde, #fc00ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.6;
}
.special-link {
display: inline-block;
padding: 15px 35px;
background: linear-gradient(45deg, #00dbde, #fc00ff);
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.2rem;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(252, 0, 255, 0.4);
position: relative;
overflow: hidden;
z-index: 3;
}
.special-link:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(252, 0, 255, 0.6);
}
.special-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s;
z-index: -1;
}
.special-link:hover::before {
left: 100%;
}
.particles-info {
position: fixed;
bottom: 20px;
right: 20px;
font-size: 0.8rem;
opacity: 0.5;
z-index: 10;
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
p {
font-size: 1rem;
}
.special-link {
padding: 12px 25px;
font-size: 1rem;
}
}
</style>
</head>
<body>
<div id="particles-js"></div>
<div class="content">
<h1>欢迎来到5cq.homes</h1>
<p>这是一个令人惊叹的3D粒子动画特效页面,展示了现代网页技术的无限可能。<br>拖动鼠标可以交互控制粒子运动,体验沉浸式的视觉效果。</p>
</div>
<div class="particles-info">拖动鼠标可交互 | 点击按钮访问5cq.homes</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// 初始化粒子动画
particlesJS('particles-js', {
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
}
},
"opacity": {
"value": 0.5,
"random": true,
"anim": {
"enable": true,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": true,
"speed": 2,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 3,
"direction": "none",
"random": true,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": true,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 140,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
// 鼠标移动视差效果
document.addEventListener('mousemove', function(e) {
const x = e.clientX / window.innerWidth;
const y = e.clientY / window.innerHeight;
const content = document.querySelector('.content');
content.style.transform = `translate(${x * 20 - 10}px, ${y * 20 - 10}px)`;
const link = document.querySelector('.special-link');
link.style.transform = `translateY(-3px) translate(${x * 10 - 5}px, ${y * 10 - 5}px)`;
});
});
</script>
</body>
</html>