Skip to content

Instantly share code, notes, and snippets.

@jobayerarman
Created October 21, 2015 01:54
Show Gist options
  • Select an option

  • Save jobayerarman/44de28fdb0b6ab2cda5f to your computer and use it in GitHub Desktop.

Select an option

Save jobayerarman/44de28fdb0b6ab2cda5f to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var ypos, image;
function parallax () {
ypos = window.pageYOffset;
image = document.getElementById('');
image.style.top = ypos * 0.4 + 'px';
}
window.addEventListener('scroll', parallax);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment