Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Jquery Smooth scroll with extra animation help please please Re: Jquery Smooth scroll with extra animation help please please

#103176
Taufik Nurrohman
Participant

Put easing after duration:

$('a[href^="#"]').click(function() {
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 200, "swing");
return false;
});