Comment savoir combien de pixels de page
window.onscroll = function (e) {
console.log(window.scrollY); // Value of scroll Y in px
};
Important Ibis
window.onscroll = function (e) {
console.log(window.scrollY); // Value of scroll Y in px
};
$(window).scroll(function() {
// use the value from $(window).scrollTop();
});