Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function( $ ){
- // Enable parallax on homepage sections
- $(window).scroll(function(){
- scrolltop = $(window).scrollTop()
- scrollwindow = scrolltop + $(window).height();
- // Intro section
- $("hero-section").css("backgroundPosition", "0px " + -(scrolltop/6) + "px");
- // Service section
- if( scrollwindow > $("#services").offset().top ) {
- backgroundscroll1 = scrollwindow - $("#services").offset().top;
- $("#services").css("backgroundPosition", "0px " + -(backgroundscroll1/6) + "px");
- }
- // Testimonials section
- if( scrollwindow > $("#testimonial").offset().top ) {
- backgroundscroll2 = scrollwindow - $("#testimonial").offset().top;
- $("#testimonial").css("backgroundPosition", "0px " + -(backgroundscroll2/6) + "px");
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement