Controlling your video animations with scroll-timeline and animation-timeline

By Steve Jonk

5 min read

Step into a (very near) future where you can control animations with pure CSS and without the need for any JavaScript? In this article, I'll show you how to control your animations with the new CSS properties scroll-timeline and animation-timeline.

Controlling your video animations with _scroll-timeline_ and _animation-timeline_
Authors

Our browsers are always evolving and cool new features are added with almost every update. I played around with one of these new features and I love it! I’m talking about the new CSS properties called scroll-timeline and animation-timeline.

MDN explains these properties as:

  • The scroll-timeline CSS shorthand property is used to define a named scroll progress timeline, which is progressed through by scrolling a scrollable element.
  • The animation-timeline CSS property specifies the timeline that is used to control the progress of a CSS animation.

In other words, the combination of these two properties makes it possible to control CSS animations with pure CSS and without the need for any JavaScript. This makes a lot of creative ideas possible, without the need for JavaScript.

Think of things like:

  • Parallax Scrolling Effects
  • Scroll-based Animations
  • Sticky Elements with Animated Transitions
  • Scroll-triggered Video and Media Playback

I’ve been wanting to do something like the second idea for some time already, so during our Google Day (a nice team hackathon) I created a small demo project where an animation is controlled by scrolling. In this article I’ll explain this project in more detail and how it’s done!

Short sidenote : Since this property is fresh off the press, at the time of writing it is not supported by every major browser yet. As always, an up-to-date report can be found at CanIUse. I’ve tried this polyfill for it, but didn’t test it very extensively, so I can’t say too much about it.

Why is this so cool, compared to existing methods?

I can understand you might think something like ‘There are several libraries which do this already, why is this so special’. Of course, there are nice libraries like GSAP, which provide all sorts of controls for animations, but in my opinion, it’s always best to use browser native methods. Besides, all these libraries use JavaScript to achieve this, whereas pure CSS has several advantages, like:

  • Lesser JavaScript means less Total Blocking Time
  • CSS is faster to parse and execute
  • With JavaScript, the layout will be re-rendered, which doesn’t happen with pure CSS

The project: scroll-based animations

So my big idea was to create an animation that can be controlled by scrolling. That is cool and all, but what animation am I going to control and how do I create it? I really like the aesthetics of the Airpod Pro 3 Landing Page, so I rebuilt a part of the animation that is displayed on that page. This is what the result looks like:

Screen recording of the end result

You can also check it out yourself on this demo page. Disclaimer: at the moment of writing, this only works on chromium browsers.

How is it done?

The gist of it is actually:

  1. Split a video into separate frames and store them as jpg’s. There are a bunch of tools for this, but I used https://ezgif.com/video-to-jpg.
  2. Create a CSS animation to change the background image of an element to the next frame jpg file at every step
  3. The new and fun part: control that CSS animation with a scroll-timeline.

I’ll explain steps 2 and 3 of this short summary with code examples. Don’t worry, the full repo of this demo is shared at the bottom of the article.

Create the CSS animation**

It might sound like video creation with extra steps (I hope you like this Rick & Morty reference), but to create the CSS animation we will recreate the original video sequence by changing the background-image of an element to the next frame (jpg file) for every step of the animation.

That will look something like:

@keyframes videoAnimation {
  25% {
    background-image: url('frame-1.jpg');
  }
  50% {
    background-image: url('frame-2.jpg');
  }
  75% {
    background-image: url('frame-3.jpg');
  }
  100% {
    background-image: url('frame-4.jpg');
  }
}

A video of 4 frames is very short, even for our Vine generation. The video used in this demo project has 147 frames and writing a new line of CSS for all of these frames doesn’t feel like the most efficient way of working. Luckily, with the power of SCSS, we don’t have to. We create a function that generates this for us, like so (where $frameCount is the amount of frames we have):

@keyframes videoAnimation {
  @for $i from 1 through $frameCount {
    #{math.div($i, $frameCount)*100}% {
      background-image: url('frame-#{$i}.jpg');
    }
  }
}

Control animation with a scroll-timeline

Now that we have the animation, we can start controlling it. We start with this HTML markup:

<div class="container">
  <div class="inner">
    <div class="video"></div>
  </div>
</div>

And the CSS:

.container {
  width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
  scroll-timeline: --videoTimeline y;
}

.inner {
  width: 100%;
  height: 800vh;
}

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('frame-1.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-color: black;
  background-position: center;
  animation-name: videoAnimation;
  animation-duration: 1ms;
  animation-timeline: --videoTimeline;
}

@keyframes videoAnimation {
  25% {
    background-image: url('frame-1.jpg');
  }
  50% {
    background-image: url('frame-2.jpg');
  }
  75% {
    background-image: url('frame-3.jpg');
  }
  100% {
    background-image: url('frame-4.jpg');
  }
}

The magic all happens in the two CSS properties that this whole article is about:

  • scroll-timeline - with this, we mark the scroll position as a control for other elements
  • animation-timeline - with this, we tell our CSS that this animation can be controlled by another element’s scroll position, where we refer to the aforementioned scroll-timeline name.

Some other notable points are:

  • Both.container and .video fill the entire screen
  • The .container has an overflow-y of auto, to ensure it is scrollable
  • The height of .inner determines how fast the animation will play when scrolling
  • The initial background-image of .video is set to the first frame of the video
  • To keep things CSS, I didn't use the SCSS function for the @keyframes

A possible improvement

A small issue with this approach was that at initial pageload, the images still needed to load when the user scrolled, causing flickering in the video. The solution I implemented probably isn’t the best for production environments. To prevent this from happening, I added a script that preloads all the images. This might need some improvement, but that was not in scope for this demo.

Final Remarks

I really really love this css feature. It performs very well, I dare to say even a lot better than most JavaScript implementations I have seen. I can’t wait for it to be widely supported!

You can find the repo of this demo project here. Feel free to play around, fork, improve and create pr’s! Because ❤️ open source

Because the end result is so nice, thought I'd share it once more here:

Screen recording of the end result

Upcoming events

  • Mastering Event-Driven Design

    PLEASE RSVP SO THAT WE KNOW HOW MUCH FOOD WE WILL NEED Are you and your team struggling with event-driven microservices? Join us for a meetup with Mehmet Akif Tütüncü, a senior software engineer, who has given multiple great talks so far and Allard Buijze founder of CTO and founder of AxonIQ, who built the fundaments of the Axon Framework. RSVP for an evening of learning, delicious food, and the fusion of creativity and tech! 🚀 18:00 – 🚪 Doors open to the public 18:15 – 🍕 Let’s eat 19:00 – 📢 Getting Your Axe On Event Sourcing with Axon Framework 20:00 – 🍹 Small break 20:15 – 📢 Event-Driven Microservices - Beyond the Fairy Tale 21:00 – 🙋‍♀️ drinks 22:00 – 🍻 See you next time? Details: Getting Your Axe On - Event Sourcing with Axon Framework In this presentation, we will explore the basics of event-driven architecture using Axon Framework. We'll start by explaining key concepts such as Event Sourcing and Command Query Responsibility Segregation (CQRS), and how they can improve the scalability and maintainability of modern applications. You will learn what Axon Framework is, how it simplifies implementing these patterns, and see hands-on examples of setting up a project with Axon Framework and Spring Boot. Whether you are new to these concepts or looking to understand them more, this session will provide practical insights and tools to help you build resilient and efficient applications. Event-Driven Microservices - Beyond the Fairy Tale Our applications need to be faster, better, bigger, smarter, and more enjoyable to meet our demanding end-users needs. In recent years, the way we build, run, and operate our software has changed significantly. We use scalable platforms to deploy and manage our applications. Instead of big monolithic deployment applications, we now deploy small, functionally consistent components as microservices. Problem. Solved. Right? Unfortunately, for most of us, microservices, and especially their event-driven variants, do not deliver on the beautiful, fairy-tale-like promises that surround them.In this session, Allard will share a different take on microservices. We will see that not much has changed in how we build software, which is why so many “microservices projects” fail nowadays. What lessons can we learn from concepts like DDD, CQRS, and Event Sourcing to help manage the complexity of our systems? He will also show how message-driven communication allows us to focus on finding the boundaries of functionally cohesive components, which we can evolve into microservices should the need arise.

    | Coven of Wisdom - Utrecht

    Go to page for Mastering Event-Driven Design
  • The Leadership Meetup

    PLEASE RSVP SO THAT WE KNOW HOW MUCH FOOD WE WILL NEED What distinguishes a software developer from a software team lead? As a team leader, you are responsible for people, their performance, and motivation. Your output is the output of your team. Whether you are a front-end or back-end developer, or any other discipline that wants to grow into the role of a tech lead, RSVP for an evening of learning, delicious food, and the fusion of leadership and tech! 🚀 18:00 – 🚪 Doors open to the public 18:15 – 🍕 Let’s eat 19:00 – 📢 First round of Talks 19:45 – 🍹 Small break 20:00 – 📢 Second round of Talks 20:45 – 🙋‍♀️ drinks 21:00 – 🍻 See you next time? First Round of Talks: Pixel Perfect and Perfectly Insane: About That Time My Brain Just Switched Off Remy Parzinski, Design System Lead at Logius Learn from Remy how you can care for yourself because we all need to. Second Round of Talks: Becoming a LeadDev at your client; How to Fail at Large (or How to Do Slightly Better) Arno Koehler Engineering Manager @ iO What are the things that will help you become a lead engineer? Building Team Culture (Tales of trust and positivity) Michel Blankenstein Engineering Manager @ iO & Head of Technology @ Zorggenoot How do you create a culture at your company or team? RSVP now to secure your spot, and let's explore the fascinating world of design systems together!

    | Coven of Wisdom - Amsterdam

    Go to page for The Leadership Meetup
  • Coven of Wisdom - Herentals - Spring `24 edition

    Join us for an exciting web technology meetup where you’ll get a chance to gain valuable insights and knowledge about the latest trends in the field. Don’t miss out on this opportunity to expand your knowledge, network with fellow developers, and discover new and exciting possibilities. And the best part? Food and drinks are on us! Johan Vervloet - Event sourced wiezen; an introduction to Event Sourcing and CQRS Join me on a journey into the world of CQRS and Event Sourcing! Together we will unravel the misteries behind these powerful concepts, by exploring a real-life application: a score app for the 'Wiezen' card game.Using examples straight from the card table, we will delve into the depths of event sourcing and CQRS, comparing them to more traditional approaches that rely on an ORM.We will uncover the signs in your own database that indicate where event sourcing can bring added value. I will also provide you with some tips and pointers, should you decide to embark on your own event sourcing adventure. Filip Van Reeth - WordPress API; "Are you talking to me?" What if the WordPress API could be one of your best friends? What kind of light-hearted or profound requests would it share with you? In this talk, I would like to introduce you to it and ensure that you become best friends so that together you can have many more pleasant conversations (calls). Wanna be friends? Please note that the event or talks will be conducted in Dutch. Want to give a talk? Send us your proposal at meetup.herentals@iodigital.com 18:00 - 19:00: Food/Drinks/Networking 19:00 - 21:00: Talks 21:00 - 22:00: Networking Thursday 30th of May, 18h00 - 22h00 CET iO Campus Herentals, Zavelheide 15, Herentals

    | Coven of Wisdom Herentals

    Go to page for Coven of Wisdom - Herentals - Spring `24 edition

Share