Add 3D parallax tilt effect to title cards on hover

Spring-animated 3D tilt, parallax image shift, and glare reflection
follow the cursor using motion values for zero-rerender performance.
Respects prefers-reduced-motion. Carousel overflow adjusted to prevent
clipping of the tilt effect.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-05 16:00:50 -05:00
co-authored by Claude Opus 4.6
parent 71b39d5aca
commit 9c6da8db53
5 changed files with 203 additions and 30 deletions
+6
View File
@@ -142,4 +142,10 @@
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Allow tilt/scale effects to overflow carousel viewport vertically */
.carousel-tilt > [data-slot="carousel-content"] {
overflow-x: clip;
overflow-y: visible;
}
}