<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
background: #000;
font-family: "Microsoft YaHei", sans-serif; /* 强制系统字体 */
}
#particles-js { height: 100vh; }
</style>
<!-- 内联粒子JS(已净化版) -->
<script>
// 已删所有外部依赖的干净代码 ↓
particlesJS("particles-js", {
particles: {
number: { value: 80 },
color: { value: "#fff" }
// ... 其他参数用纯JSON结构
}
});
</script>
</head>
<body>
<div id="particles-js"></div>
<h1 style="position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); color:white; pointer-events:none">
LIFE SHOULD BE...
</h1>
</body>
</html>