预览: https://xxc.net
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XXC·NET</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background: #050505;
background-image:
linear-gradient(rgba(0, 243, 255, 0.06) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 243, 255, 0.06) 1px, transparent 1px);
background-size: 30px 30px;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Share Tech Mono', 'Courier New', monospace;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0) 50%,
rgba(0,0,0,0.25) 50%,
rgba(0,0,0,0.25)
);
background-size: 100% 4px;
pointer-events: none;
z-index: 2;
}
.brand-group {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 1;
user-select: none;
position: relative;
z-index: 1;
}
.brand {
font-size: clamp(4.5rem, 18vw, 8rem);
font-weight: bold;
color: #fff;
text-shadow:
0 0 5px #fff,
0 0 10px #fff,
0 0 20px #00f3ff,
0 0 40px #00f3ff;
letter-spacing: clamp(6px, 2.5vw, 14px);
animation: glitch 1s infinite linear;
word-break: break-all;
}
.domain {
font-size: clamp(1.4rem, 5vw, 2.2rem);
color: #fcee0a;
text-transform: uppercase;
letter-spacing: clamp(4px, 1.5vw, 8px);
text-shadow: 0 0 12px rgba(252, 238, 10, 0.7);
margin-top: -0.2rem;
}
@keyframes glitch {
2%, 64% { transform: translate(2px, 0) skew(0deg); }
4%, 60% { transform: translate(-2px, 0) skew(0deg); }
62% { transform: translate(0, 0) skew(3deg); }
}
@media (max-width: 480px) {
.brand-group {
transform: scale(0.9);
}
}
</style>
</head>
<body>
<div class="brand-group">
<div class="brand">XXC</div>
<div class="domain">XXC.NET</div>
</div>
</body>
</html>

在其他网站里发现的,提取出来做了域名展示