Created
March 30, 2020 02:55
-
-
Save leocunhadev/ce0aff7bee018f95d8c8001f89c3b040 to your computer and use it in GitHub Desktop.
Revisions
-
leocunhadev created this gist
Mar 30, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ jQuery(document).ready(function(){ $(window).scroll(function(e){ parallaxScroll(); }); function parallaxScroll(){ var scrolled = $(window).scrollTop(); $('#parallax-bg-1').css('top',(0-(scrolled*.10))+'px'); $('#parallax-bg-2').css('top',(0-(scrolled*.4))+'px'); $('#parallax-bg-3').css('top',(0-(scrolled*1))+'px'); } });