Skip to content

Instantly share code, notes, and snippets.

View KostiantynKondratiuk's full-sized avatar

Kostiantyn Kondratiuk KostiantynKondratiuk

View GitHub Profile
@koldovsky
koldovsky / smooth-scroll.js
Created November 15, 2016 15:41
Smooth Scroll
$(function() {
$('.smooth').on('click', function(event) {
var target = $(this.getAttribute('href'));
if (target.length) {
event.preventDefault();
$('html, body').stop().animate({
scrollTop: target.offset().top
}, 2000);
}
});