赛博朋克风格的数字星河支付清算系统设计理念
视觉与色彩的交融
深邃的
body {
background: linear-gradient(135deg, #1f1c2c, #928dab);
color: #ffffff;
font-family: 'Exo', sans-serif;
}
通过

霓虹渐变效果

赛博朋克色彩
未来科技与视觉美学的完美融合
深邃的
body {
background: linear-gradient(135deg, #1f1c2c, #928dab);
color: #ffffff;
font-family: 'Exo', sans-serif;
}
通过
背景中融入
@keyframes starAnimation {
from { transform: translateY(0); }
to { transform: translateY(-1000px); }
}
.starfield {
background: url('star.png') repeat;
animation: starAnimation 50s linear infinite;
}
动画通过
页面顶部设置
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(0, 0, 0, 0.8);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
display: flex;
justify-content: space-between;
padding: 10px 20px;
}
.navbar a {
color: #00ffff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.navbar a:hover {
color: #ff00ff;
}
过渡效果使得导航链接在互动时更加生动。
交互元素,如按钮,采用
.glow-button {
background: #00ffff;
border: none;
padding: 15px 30px;
color: #000;
font-size: 16px;
border-radius: 5px;
box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
transition: box-shadow 0.3s, transform 0.3s;
}
.glow-button:hover {
box-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff;
transform: scale(1.05);
}
发光按钮不仅美观,还增强了页面的互动性和科技感。
体验效果系统采用
@media (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: center;
}
.module {
width: 100%;
}
}
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #00ffff;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
响应式布局通过媒体查询,实现各设备间的无缝切换,加载动画则通过