Scroll snapping after layout changes

CSS Scroll Snap
allows web developers to create well-controlled scroll experiences by declaring
scroll snapping positions. One shortcoming of the current implementation is that
scroll snapping does not work well when the layout changes, such as when th…


This content originally appeared on web.dev and was authored by Yi Gu

CSS Scroll Snap allows web developers to create well-controlled scroll experiences by declaring scroll snapping positions. One shortcoming of the current implementation is that scroll snapping does not work well when the layout changes, such as when the viewport is resized or the device is rotated. This shortcoming is fixed in Chrome 81.

Interoperability

Many browsers have basic support for CSS Scroll Snap. See Can I use CSS Scroll Snap? for more information.

Chrome is currently the only browser to implement scroll snapping after layout changes. Firefox has a ticket open for implementing this and Safari also has an open ticket for re-snapping after a scroller's content changes. For now, you can simulate this behaviour by adding the following code to event listeners to force a snapping to execute:

scroller.scrollBy(0,0);

However, this will not guarantee that the scroller snaps back to the same element.

Background

CSS Scroll Snap

The CSS Scroll Snap feature allows web developers to create well-controlled scroll experiences by declaring scroll snapping positions. These positions ensure that scrollable content is properly aligned with its container to overcome the issues of imprecise scrolling. In other words, scroll snapping:

  • Prevents awkward scroll positions when scrolling.
  • Creates the effect of paging through content.

Paginated articles and image carousels are two common use cases for scroll snaps.

Example of CSS scroll snap.
Example of CSS scroll snap. At the end of scrolling an image's horizontal center is aligned with the horizontal center of the scroll container.

Shortcomings

Snap positions get lost when resizing a window.

Scroll snapping allows users to effortlessly navigate through content, but its inability to adapt to changes in content and layout blocks some of its potential benefits. As shown in the example above, users have to re-adjust scroll positions whenever resizing a window to find the previously snapped element. Some common scenarios that cause layout change are:

  • Resizing a window
  • Rotating a device
  • Opening DevTools

The first two scenarios make CSS Scroll Snap less appealing for users and the third one is a nightmare for developers when debugging. Developers also need to consider these shortcomings when trying to make a dynamic experience that supports actions such as adding, removing, or moving content.

A common fix for this is to add listeners that execute a programmatic scroll via Javascript to force snapping to execute whenever any of these mentioned layout changes happen. This workaround can be ineffective when the user expects the scroller to snap back to the same content as before. Any further handling with Javascript seems to almost defeat the purpose of this CSS feature.

Built-in support for re-snapping after layout changes in Chrome 81

The mentioned shortcomings no longer exist in Chrome 81: scrollers will remain snapped even after changing layout. They will re-evaluate scroll positions after changing their layout, and re-snap to the closest snap position if necessary. If the scroller was previously snapped to an element that still exists after the layout change, then the scroller will try to snap back to it. Pay attention to what happens when the layout changes in the following example.

Snap position lost

Rotating a device does not preserve the snap positions in Chrome 80. After scrolling to the slide that says NOPE and changing the device orientation from portrait to landscape, a blank screen is shown, which indicates that the scroll snap position was lost.

Snap position preserved

Rotating a device does preserve the snap positions in Chrome 81. The slide that says NOPE remains in view even though the device orientation changes multiple times.

See the Re-snapping after layout changes specification for more details.

Caution: Snapping is also executed when the page loads. This affects the initial scroll offset of scrollers using the scroll snap feature.

Example: Sticky scrollbars

With "Snap after layout changes", developers can implement sticky scrollbars with a few lines of CSS:

.container {
scroll-snap-type: y proximity;
}

.container::after {
scroll-snap-align: end;
display: block;
}

Want to learn more? See the following demo chat UI for visuals.

Adding a new message triggers re-snap which makes it stick to the bottom in Chrome 81.

Future work

All re-snapping scroll effects are currently instant; a potential follow-up is to support re-snapping with smooth scrolling effects. See the specification issue for details.

Feedback

Your feedback is invaluable in making re-snapping after layout changes better, so go on and try it out and let the Chromium engineers know what you think.


This content originally appeared on web.dev and was authored by Yi Gu


Print Share Comment Cite Upload Translate Updates
APA

Yi Gu | Sciencx (2020-02-22T00:00:00+00:00) Scroll snapping after layout changes. Retrieved from https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/

MLA
" » Scroll snapping after layout changes." Yi Gu | Sciencx - Saturday February 22, 2020, https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/
HARVARD
Yi Gu | Sciencx Saturday February 22, 2020 » Scroll snapping after layout changes., viewed ,<https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/>
VANCOUVER
Yi Gu | Sciencx - » Scroll snapping after layout changes. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/
CHICAGO
" » Scroll snapping after layout changes." Yi Gu | Sciencx - Accessed . https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/
IEEE
" » Scroll snapping after layout changes." Yi Gu | Sciencx [Online]. Available: https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/. [Accessed: ]
rf:citation
» Scroll snapping after layout changes | Yi Gu | Sciencx | https://www.scien.cx/2020/02/22/scroll-snapping-after-layout-changes/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.