Skip to content

Commit 31081c1

Browse files
committed
new version
0 parents  commit 31081c1

27 files changed

Lines changed: 5011 additions & 0 deletions

css/animations.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/* 文字渐入效果 */
2+
.animate-text {
3+
opacity: 0;
4+
animation: fadeIn 1s ease forwards;
5+
}
6+
7+
.animate-text .motto {
8+
opacity: 0;
9+
animation: fadeIn 1s ease 0.5s forwards;
10+
}
11+
12+
@keyframes fadeIn {
13+
from {
14+
opacity: 0;
15+
transform: translateY(20px);
16+
}
17+
to {
18+
opacity: 1;
19+
transform: translateY(0);
20+
}
21+
}
22+
23+
/* 卡片悬浮效果 */
24+
.service-card,
25+
.project-card,
26+
.partner-logo {
27+
transition: transform 0.3s ease, box-shadow 0.3s ease;
28+
}
29+
30+
/* 粒子背景动画 */
31+
#particles-js {
32+
position: absolute;
33+
width: 100%;
34+
height: 100%;
35+
top: 0;
36+
left: 0;
37+
z-index: 1;
38+
}

0 commit comments

Comments
 (0)