Skip to content

Instantly share code, notes, and snippets.

@zetavg
Last active August 29, 2015 14:07
Show Gist options
  • Save zetavg/1d8e57693756f4786974 to your computer and use it in GitHub Desktop.
Save zetavg/1d8e57693756f4786974 to your computer and use it in GitHub Desktop.
讓網頁中的 <a href="#foo">bar</a> 都平滑捲動。
$("a[href*=#]:not([href=#])").click ->
if location.pathname.replace(/^\//, "") is @pathname.replace(/^\//, "") and location.hostname is @hostname
target = $(@hash)
target = (if target.length then target else $("[name=#{@hash.slice(1)}]"))
if target.length
$("html, body").animate
scrollTop: target.offset().top - 18
, 1000
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment