Skip to content

Instantly share code, notes, and snippets.

@sartas
Last active December 10, 2015 01:19
Show Gist options
  • Select an option

  • Save sartas/4357589 to your computer and use it in GitHub Desktop.

Select an option

Save sartas/4357589 to your computer and use it in GitHub Desktop.
$.scrollTo=function(target,direction) {
var obj = $.browser.chrome ? 'body' : 'html';
var top = target ? $(target).offset().top : 0;
//только вверх
if(direction=='up'){
if(window.pageYOffset < top)
return false;
}
//только вниз
if(direction=='down'){
if(window.pageYOffset > top)
return false;
}
$(obj).animate({'scrollTop': top}, 500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment