Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.95 KB

File metadata and controls

38 lines (30 loc) · 1.95 KB

CSS Scroll Animations

CSS Scroll-Triggered Animations (animation-trigger, timeline-trigger)

CSS Scroll-Driven Animations (animation-timeline, view-timeline, view())

@keyframes slide-left {
    from { transform: scale(0.7); }
    to   { transform: scale(1); }
}
.scroll-animate-slide-left {
    transform-origin: top right;
    animation: slide-left ease-out both;
    animation-timeline: view(block -64px);
    animation-range: entry 0% entry 50%;
}

Examples