Fix hero image SVG animations and enhance data line effects
- Move SVG path definitions to defs section for proper animation references - Add staggered data-pulse animations to data lines with sequential delays - Fix animateMotion path references for moving particles 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
30
assets/css/main.min.css
vendored
30
assets/css/main.min.css
vendored
@@ -3541,4 +3541,34 @@ main {
|
||||
/* Hide reCAPTCHA badge */
|
||||
.grecaptcha-badge {
|
||||
visibility: hidden !important;
|
||||
}
|
||||
|
||||
/* Additional hero graphic animations */
|
||||
.hero-graphic .data-line-1,
|
||||
.hero-graphic .data-line-2,
|
||||
.hero-graphic .data-line-3,
|
||||
.hero-graphic .data-line-4,
|
||||
.hero-graphic .data-line-5,
|
||||
.hero-graphic .data-line-6 {
|
||||
animation: data-pulse 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.hero-graphic .data-line-2 {
|
||||
animation-delay: 0.5s;
|
||||
}
|
||||
|
||||
.hero-graphic .data-line-3 {
|
||||
animation-delay: 1s;
|
||||
}
|
||||
|
||||
.hero-graphic .data-line-4 {
|
||||
animation-delay: 1.5s;
|
||||
}
|
||||
|
||||
.hero-graphic .data-line-5 {
|
||||
animation-delay: 2s;
|
||||
}
|
||||
|
||||
.hero-graphic .data-line-6 {
|
||||
animation-delay: 2.5s;
|
||||
}
|
||||
Reference in New Issue
Block a user