Last active
August 26, 2015 17:01
-
-
Save victorpolko/7fcfaf48898b7f18d235 to your computer and use it in GitHub Desktop.
jQuery plugin for uniform scroll animation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @param [jQuery Object] target Dom element to scroll to | |
# @param [Integer] speed Speed (pixels per second) | |
$.fn.scrollWithSpeed = (target, speed = 10000, easing, complete) -> | |
@stop().animate( | |
scrollTop: target.offset().top | |
, Math.abs($(window).scrollTop() - target.offset().top) / speed * 1000 | |
, easing | |
, complete ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using this plugin with anchors: