Skip to content

Instantly share code, notes, and snippets.

@o0
Last active May 5, 2020 14:24
Show Gist options
  • Save o0/402e51b98f1a94e3e3474aa543f59430 to your computer and use it in GitHub Desktop.
Save o0/402e51b98f1a94e3e3474aa543f59430 to your computer and use it in GitHub Desktop.
Скрипт, который обновляет положение бэкграунда блока при прокрутке страницы
let sectionToAnimate = document.querySelector('.section_special');
window.addEventListener('scroll', function() {
sectionToAnimate.style.backgroundPosition = `-${document.body.scrollTop}px 0`;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment