Skip to content

Instantly share code, notes, and snippets.

@DriginCode
Created February 9, 2017 15:41
Show Gist options
  • Save DriginCode/3e601ed45c1019286896eadaed8027ab to your computer and use it in GitHub Desktop.
Save DriginCode/3e601ed45c1019286896eadaed8027ab to your computer and use it in GitHub Desktop.
scroll onclick on page
$(function() {
$("#js-get-started").on("click", function(e){ // при нажатии на ссылку с id js-get-started
e.preventDefault();
var plansOffset = $("#js-plans").offset().top; // вычисляется высота от вверха браузера до нужного элемента с id js-plans
$("html, body").animate({ // реализация самой прокрутки на высчитанное ранее растояние plansOffset за 500 миллисекунд
scrollTop: plansOffset
}, 500);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment