Home › Forums › Design › Animating on scroll but not actually scrolling › Reply To: Animating on scroll but not actually scrolling
February 13, 2018 at 10:15 am
#266928
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
});