Jak osiągnąć płynne przewijanie kolejnych sekcji na stronie internetowej? Bardzo prosto - wystarczy użyć prostej metody jQuery, która powoduje, że po kliknięciu w hiperłącze zawierające odniesienie do pewnego elementu ID strony (#element), zostanie ona płynnie przewinięta we wskazane miejsce.
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
Przykład można zobaczyć tutaj.
Brak komentarzy:
Prześlij komentarz