Scroll-Driven Animations Debugger (DevTools Extension)

I’m extremely pleased to announce the release of Scroll-Driven Animations Debugger, a DevTools extension to visualize and debug Scroll-Driven Animations.

~

Table of Contents

  1. Demo
  2. Get the extension
  3. Backstory
  4. Known Issues and Limitations
  5. Future Plans
  6. Spread the word

~

# Demo

To jump right in here’s a video of the extension in action, tested on scroll-driven-animations.style:

The extension adds a new pane named “Scroll-Driven Animations” to Chrome DevTools’s Elements Panel. To use it, inspect an Element as you’d normally do and select the “Scroll-Driven Animations” pane. When selected, you’ll see a visualization of the Scroll-Driven Animations that are added to the inspected element. The visualization is a live representation of the scroller, animated element, and – in case of a ViewTimeline – tracked subject: as you scroll in the document, the visualization also updates.

Use the top toolbar to switch between multiple animations (if more than one) or to set the visualization’s scale factor. Typically you don’t need to set the scale factor, as the visualization automatically adapts itself to the available space. Also included in the top toolbar are an indicator telling you which type of scroll timeline you are dealing with, and some progress numbers: total scroll progress, effect progress, actual scroll offset (in pixels).

Use the “Edit Values” toggle at the bottom to bring up a range editor. Once the editor is shown, the visualization also shows indicators for the start and end range. In case of a ScrollTimeline these are two lines on the scroller’s contents. In case of a ViewTimeline these are two boxes representing the areas for the set animation-range-* values. Change the values using the dropdown and/or the inputs. Note that the inputs do not live-update (for now); after changing click somewhere outside the field to update the value.

~

# Get the extension

The extension is available on the Chrome Web Store:

Available on the Chrome Web Store

If you like this extension, please leave a review on the Chrome Web Store.

There is also a repository on GitHub where you can report issues and file feature requests. The source has not been published on it yet, but will follow some time later this year.

~

# Backstory

When I launched scroll-driven-animations.style back in June, it came with two handy features that I had worked on – and teased about – before the site’s launch. One is a View Timeline Ranges Visualizer and the other is an experimental debugging experience as demonstrated in the video below:

Recording the experimental debugger on scroll-driven-animations.style. This debugger has been removed and is now replaced by the extension.

As I had mentioned in the announcement post, both these tools would form the basis for future debugging features part of Chrome DevTools.

Because our DevTools team is extremely busy with a ton of other features (which I can’t talk about just yet) I wondered what it would take to turn my code into a DevTools extension. Turns out that was pretty easy to do, as you can load an HTML page as a Sidebar Pane of DevTools’s Elements Panel (docs). The difficult parts was in orchestrating the passing of the data between the page and the extension and back. Two days later I had a working POC:

Proof of Concept of the extension.

Using my very own scroll-driven-animations.style as the playground to test the extension, I identified a bunch of gaps my POC was still missing. For example, it didn’t support position: sticky in the visualization, and supported only percentages in the range offsets. These holes have been plugged, with proper position: sticky support (both top and bottom) and support for ranges that use pixels/calc()/etc. as their offset.

Capture of my TODO.md, before almost reaching a v1 state.

I also had to work around Chrome Bug #1478624 which reports the wrong values for rangeEnd and rangeStart when reading them from an animation.

~

# Known Issues and Limitations

While the extension is mature enough to be released as version 1.0.0, there still are a few bugs that need to get fixed and future enhancements that could be done.

Biggest bugs/shortcomings right now are:

  • Issue #1 – The view-timeline-inset is not taken into account in the visualization
  • Issue #16 – Keyframes that contain range information don’t get parsed

These shortcomings are marked as P0, so sit at the very of my priority list. I’m also pretty sure that more bugs will get reported once people start using it.

There’s also a few things that I could not work around. These issues are collected in the FAQ for the extension.

  • Issue #17 – One unfixable issue is that ranges with relative units – such as animation-range: 0 90vh – get reported as absolute values in pixels. This is because of getComputedStyle($element).getPropertyValue('animation-range') reports them as such.
  • Issue #19 and Issue #20 – Another one is caused by a bug in Chrome DevTools (Chrome Bug #1480418): when asking the value of $0 which I need to show you the right info about the element, it reports undefined when inspecting an element that is inside an iframe. I’ve tried to cater for this by showing a warning when that happens, but the problem is that DevTools also sometimes reports the wrong value. So unfortunately this extension won’t work on CodePen directly, as you need to open the page in CodePen’s standalone Debug View first.

~

# Future Plans

The short term plan is to fix most of the bugs as possible and add a few new features. Maybe I’ll find some time to iterate on a few more ideas which could help you better debug Scroll-Driven Animations (feel free to file an idea in the repo).

The long term plan is for this extension to stop existing over time. This will happen some time after Chrome DevTools has debugging tools and features for Scroll-Driven Animations built-in. This plugin exists to fill the gap between now and then. Rest assured that the tooling offered by this plugin will also be incorporated in DevTools, one way or another.

~

# Spread the word

To help spread the contents of this post, feel free to retweet its announcement tweetpost/tootpost:

~

Published by Bramus!

Bramus is a frontend web developer from Belgium, working as a Chrome Developer Relations Engineer at Google. From the moment he discovered view-source at the age of 14 (way back in 1997), he fell in love with the web and has been tinkering with it ever since (more …)

Unless noted otherwise, the contents of this post are licensed under the Creative Commons Attribution 4.0 License and code samples are licensed under the MIT License

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.