Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Animating on scroll but not actually scrolling Reply To: Animating on scroll but not actually scrolling

#266928
Shikkediel
Participant

It’ll only work with a mouse (like on that page) – you can use the wheel event for it.

window.addEventListener('wheel', function(e) {

  e.preventDefault(); // page will not scroll

  // animation code
});