Skip to content

Instantly share code, notes, and snippets.

@EfremovMS
Last active March 12, 2019 12:26
Show Gist options
  • Save EfremovMS/a7c01e722a6326a513c2d0ed82c1027b to your computer and use it in GitHub Desktop.
Save EfremovMS/a7c01e722a6326a513c2d0ed82c1027b to your computer and use it in GitHub Desktop.
JS page scroll event
$(function () {
// параллакс при прокрутке
// - [all]
function pagerScroll () {
let t = $(window).scrollTop();
// code ...
}
$(window).scroll(function () {
pagerScroll();
});
pagerScroll();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment