Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save thotbox/5a0c55bd0735db1cdd0a to your computer and use it in GitHub Desktop.

Select an option

Save thotbox/5a0c55bd0735db1cdd0a to your computer and use it in GitHub Desktop.
JavaScript: Parallax Background
// Parallax
$(document).ready(function(){
$window = $(window);
var width = $window.width();
$(window).scroll(function() {
// #header
var offset = 0;
var speed = 3;
var calc = ($window.scrollTop() / speed) + offset;
var results = '50% '+ calc + 'px';
$('#header').css({ backgroundPosition: results });
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment