<a href="#" onclick="
$('body,html').animate({
scrollTop: $('.contacts').first().offset().top
}, 600);
return false;
">Обратная связь</a>Плавный скроллинг по клику на ссылку
16 июня 2017, 15:33
16 июня 2017, 15:33
<a href="#" onclick="
$('body,html').animate({
scrollTop: $('.contacts').first().offset().top
}, 600);
return false;
">Обратная связь</a>
$(document).ready(function() { $('a.scroll-to').on('click',function () { var elementClick = $(this).attr("href"); var elementArr = elementClick.split("#"); destination = $("#"+ elementArr[1]).offset().top; $("html, body").animate( { scrollTop: destination }, 1100 ); return false; }); });