window.addEventListener('scroll', addScroll)
function addScroll() {
const advertising = document.querySelector('.download')
let scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
let windowHeight = document.documentElement.clientHeight || document.body.clientHeight;
let scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight;
let footerHeight = document.querySelector('.footer').clientHeight
if ((scrollTop + windowHeight) >= scrollHeight - footerHeight) {
}