Skip to content

Instantly share code, notes, and snippets.

@janwirth
Forked from josuecau/smooth-scrolling.coffee
Created May 27, 2016 20:11
Show Gist options
  • Save janwirth/49ac7d2bfc6fe003eb1fcc18c802e7fa to your computer and use it in GitHub Desktop.
Save janwirth/49ac7d2bfc6fe003eb1fcc18c802e7fa to your computer and use it in GitHub Desktop.
# based on http://www.paulund.co.uk/smooth-scroll-to-internal-links-with-jquery
$ ->
$('a[href*=#]:not([href=#])').on 'click.smoothscroll', (e) ->
e.preventDefault()
target = @hash
$target = $(target)
$('html, body').stop().animate {
'scrollTop': $target.offset().top
}, 500, 'swing', ->
window.location.hash = target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment