mirror of
https://github.com/foxhui/WebAI2API.git
synced 2026-06-16 21:03:59 +08:00
20 lines
359 B
CSS
20 lines
359 B
CSS
.VPImage.image-src {
|
|
filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.1));
|
|
}
|
|
|
|
/* 添加呼吸光效 */
|
|
.VPHero .image {
|
|
animation: glow 3s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes glow {
|
|
|
|
0%,
|
|
100% {
|
|
filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5));
|
|
}
|
|
|
|
50% {
|
|
filter: drop-shadow(0 0 40px rgba(56, 189, 248, 0.8));
|
|
}
|
|
} |