jueves, 18 de mayo de 2017

Arriba flotante

//boton arriba (FLOTANTE)

window.onscroll = function() {scrollFunction()};

function scrollFunction() {
    if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
        document.getElementById("BotonArriba").style.display = "block";
    } else {
        document.getElementById("BotonArriba").style.display = "none";
    }
}


function topFunction() {
    document.body.scrollTop = 0;
    document.documentElement.scrollTop = 0;
}

No hay comentarios:

Publicar un comentario