Files

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));
}
}