添加官网景深效果
- 移除突兀的代码 - 为官网加装景深 - 修复PKG的导入
This commit is contained in:
@@ -148,49 +148,69 @@
|
||||
box-shadow: 0 0 24px rgba(59, 130, 246, 0.5);
|
||||
}
|
||||
|
||||
.code-window {
|
||||
background: rgba(10, 15, 30, 0.9);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 16px;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.code-header {
|
||||
/* 涟漪动画区域 */
|
||||
.ripple-container {
|
||||
position: relative;
|
||||
width: 320px;
|
||||
height: 320px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 16px 20px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.code-dot {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
.ripple {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
border: 2px solid rgba(6, 182, 212, 0.3);
|
||||
animation: ripple-expand 3s ease-out infinite;
|
||||
}
|
||||
|
||||
.code-dot-red { background: #ef4444; }
|
||||
.code-dot-yellow { background: #eab308; }
|
||||
.code-dot-green { background: #22c55e; }
|
||||
.ripple-1 { animation-delay: 0s; }
|
||||
.ripple-2 { animation-delay: 0.6s; }
|
||||
.ripple-3 { animation-delay: 1.2s; }
|
||||
.ripple-4 { animation-delay: 1.8s; }
|
||||
.ripple-5 { animation-delay: 2.4s; }
|
||||
|
||||
.code-title {
|
||||
margin-left: 12px;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
@keyframes ripple-expand {
|
||||
0% {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
opacity: 1;
|
||||
border-width: 3px;
|
||||
border-color: rgba(6, 182, 212, 0.6);
|
||||
}
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
border-width: 2px;
|
||||
border-color: rgba(6, 182, 212, 0.3);
|
||||
}
|
||||
100% {
|
||||
width: 320px;
|
||||
height: 320px;
|
||||
opacity: 0;
|
||||
border-width: 1px;
|
||||
border-color: rgba(6, 182, 212, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.code-body {
|
||||
padding: 20px 24px;
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
color: var(--text-secondary);
|
||||
overflow-x: auto;
|
||||
.hero-logo {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.4));
|
||||
animation: logo-breathe 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes logo-breathe {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.4));
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.05);
|
||||
filter: drop-shadow(0 0 50px rgba(6, 182, 212, 0.6));
|
||||
}
|
||||
}
|
||||
|
||||
/* 滚动指示器 */
|
||||
@@ -252,8 +272,25 @@
|
||||
}
|
||||
.hero-stats { max-width: 400px; }
|
||||
.stat { text-align: center; }
|
||||
.ripple-container {
|
||||
margin: 0 auto;
|
||||
width: 280px;
|
||||
height: 280px;
|
||||
}
|
||||
.hero-logo {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.hero-stats { grid-template-columns: 1fr; gap: 16px; }
|
||||
.ripple-container {
|
||||
width: 240px;
|
||||
height: 240px;
|
||||
}
|
||||
.hero-logo {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,11 +4,83 @@
|
||||
margin: 0 auto;
|
||||
padding: 100px 80px 80px 24px;
|
||||
min-height: 100vh;
|
||||
perspective: 1000px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
text-align: center;
|
||||
margin-bottom: 64px;
|
||||
will-change: transform;
|
||||
transition: transform 0.05s linear;
|
||||
}
|
||||
|
||||
/* 陀螺仪权限按钮 */
|
||||
#gyro-permission-btn {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.gyro-permission-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
backdrop-filter: blur(8px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
animation: fadeIn 0.3s ease;
|
||||
}
|
||||
|
||||
.gyro-permission-card {
|
||||
background: rgba(20, 30, 50, 0.95);
|
||||
border: 1px solid rgba(6, 182, 212, 0.3);
|
||||
border-radius: 20px;
|
||||
padding: 40px 32px 32px;
|
||||
text-align: center;
|
||||
max-width: 320px;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.gyro-permission-card svg {
|
||||
color: var(--cyan);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.gyro-permission-card p {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.gyro-permission-card span {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
display: block;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.gyro-permission-card button {
|
||||
padding: 12px 32px;
|
||||
border-radius: 12px;
|
||||
border: none;
|
||||
background: linear-gradient(135deg, var(--cyan), var(--blue));
|
||||
color: #fff;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
|
||||
.gyro-permission-card button:hover {
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
.page-title {
|
||||
@@ -104,7 +176,7 @@
|
||||
|
||||
.pkg-explain {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
.pkg-explain {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user