Skip to content

Instantly share code, notes, and snippets.

@oakmac
Created March 17, 2016 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oakmac/a54e4e6ddd435173637a to your computer and use it in GitHub Desktop.
Save oakmac/a54e4e6ddd435173637a to your computer and use it in GitHub Desktop.
jquery-animate.cljs
;; JS:
;; $('html,body').animate({ scrollTop: element.offset().top }, 'slow');
(def $ js/jQuery)
(let [js-anim-dest (js-obj "scrollTop" (aget (.offset element) "top"))])
(.animate ($ "html,body") js-anim-dest "slow")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment