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 characters
| /* Parallax Scrolling */ | |
| $(function parallaxScrolling() { | |
| $window = $(window); // Cache the Window object | |
| var width = $window.width(); // Cache the window width | |
| var $bgobj = $('.parallax'); // assigning the object | |
| $('.parallax').each(function(){ | |
| var $bgobj = $(this); // assigning the object | |
| $(window).scroll(function() { |
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 characters
| <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> |