pekko/akka-docs-dev/_sphinx/themes/akka/static/scrollTo.js

9 lines
350 B
JavaScript
Raw Normal View History

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);
});
});