Skip to content

Instantly share code, notes, and snippets.

View elmadah's full-sized avatar

Ahmed Elmadah elmadah

View GitHub Profile
@elmadah
elmadah / parallax.js
Created May 9, 2018 13:49
Background Parallax effect
$(window).scroll(function () {
var scrolled = $(this).scrollTop();
$("#parallax").css("background-position", "center -" + ((scrolled * 0.2)) + "px");
});