Created
February 23, 2022 02:52
-
-
Save alandsilva26/bd43ab8459f8cfd54bba33c072cb4c1a to your computer and use it in GitHub Desktop.
WebDev: Parallax
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
| $(document).ready(function () { | |
| window.addEventListener("scroll", function () { | |
| let offset = window.pageYOffset; | |
| console.log(`${offset * 1}px`); | |
| $("#home-header--bg-image").css( | |
| "background-position-y", | |
| `${offset * 0.2}px` | |
| ); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment