Parallax Effect on Text
问题 A perfect example of what I am looking to achieve is on this page as soon as you land on it (parallax BG, text fades, and text is parallaxed):themenectar.com I am using parallax.js for my backgrounds which works great. I am also using this snippet below which fades my title out on scroll: function scrollBanner() { $(document).scroll(function(){ var scrollPos = $(this).scrollTop(); $('.page-title, .breadcrumbs').css({ 'opacity' : 1-(scrollPos/200), }); }); } scrollBanner(); Everything works