swup / scroll-plugin

A swup plugin for smooth scrolling 🏄‍♂️
https://swup.js.org/plugins/scroll-plugin
MIT License
3 stars 8 forks source link

Save scroll animation status in visit object #65

Closed daun closed 1 year ago

daun commented 1 year ago

Description

Drive-by improvement

How to disable scroll animations

// Disable scroll animation between pages
swup.hooks.before('visit:start', (visit) => visit.scroll.animate  = false)

// Disable scroll animation on link to same page
swup.hooks.before('link:self', (visit) => visit.scroll.animate  = false)

// Disable scroll animation on link to same page anchor
swup.hooks.before('link:anchor', (visit) => visit.scroll.animate  = false)

Checks

Additional information

Closes #63