Код: Выделить всё
function updateBackground() {
const section = document.querySelector(".info-block");
const rect = section.getBoundingClientRect();
const scrollPosition = window.scrollY;
if (scrollPosition >= rect.top) {
section.style.transform = "translate3d(0, scrollPosition, 0)";
}
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... g-the-page
Мобильная версия