Skip to content

Instantly share code, notes, and snippets.

@alandsilva26
Created February 23, 2022 02:52
Show Gist options
  • Select an option

  • Save alandsilva26/bd43ab8459f8cfd54bba33c072cb4c1a to your computer and use it in GitHub Desktop.

Select an option

Save alandsilva26/bd43ab8459f8cfd54bba33c072cb4c1a to your computer and use it in GitHub Desktop.
WebDev: Parallax
$(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