pekko/akka-docs-dev/_sphinx/themes/akka/static/scrollTo.js
Björn Antonsson 8dec2664fc +pro,doc #15290 Add separate doc project for release-2.3-dev
* Create sepaate project for stream and http docs.
* Make validatePullRequest run the relevant tests only.
2014-05-27 08:18:12 +02:00

9 lines
No EOL
350 B
JavaScript

jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 300);
$('html,body').animate({scrollTop:$(this.hash).offset().top-=5}, 300);
$(this.hash).effect("highlight", {color: "#FFCC85"}, 2000);
});
});