“JS Animate Scroll até o topo da página” Respostas de código

JS Animate Scroll até o topo da página

// Experimental: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView#Browser_compatibility
document.body.scrollIntoView({behavior: 'smooth', block: 'start'});
P. Tune

JS Animate Scroll até o topo da página

function scrollTo(element, to, duration) {
    if (duration <= 0) return;
    var difference = to - element.scrollTop;
    var perTick = difference / duration * 10;

    setTimeout(function() {
        element.scrollTop = element.scrollTop + perTick;
        if (element.scrollTop === to) return;
        scrollTo(element, to, duration - 10);
    }, 10);
}
P. Tune

Respostas semelhantes a “JS Animate Scroll até o topo da página”

Perguntas semelhantes a “JS Animate Scroll até o topo da página”

Procure respostas de código populares por idioma

Procurar outros idiomas de código