Skip to content

Instantly share code, notes, and snippets.

@antonkartashov
Created March 2, 2016 03:52
Show Gist options
  • Select an option

  • Save antonkartashov/4d114c734bad3d5fd415 to your computer and use it in GitHub Desktop.

Select an option

Save antonkartashov/4d114c734bad3d5fd415 to your computer and use it in GitHub Desktop.
var layer = document.getElementsByClassName("header-wrap")[0];
window.addEventListener('scroll', function() {
var scrolltop = window.pageYOffset;
layer.style.top = -scrolltop * .09 + 20 + 'px';
layer.style.opacity = 1 - scrolltop * .002;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment