Skip to content

Instantly share code, notes, and snippets.

@michaeldeboeve
Last active September 7, 2020 12:51
Show Gist options
  • Save michaeldeboeve/7319090 to your computer and use it in GitHub Desktop.
Save michaeldeboeve/7319090 to your computer and use it in GitHub Desktop.
jQuery: Stop animation when user scrolls
$(window).on('mousewheel', function() {
$('html, body').stop();
});
@ritwikpradhan
Copy link

ritwikpradhan commented Sep 7, 2020

Beautiful. Please help how to stop animation when scroll on mobile device.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment