Last active
May 5, 2020 14:24
-
-
Save o0/402e51b98f1a94e3e3474aa543f59430 to your computer and use it in GitHub Desktop.
Скрипт, который обновляет положение бэкграунда блока при прокрутке страницы
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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