Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Parallax 1st attempt, fixed scrolling nav not showing up! Reply To: Parallax 1st attempt, fixed scrolling nav not showing up!

#170695
Atelierbram
Participant

Try javascript scroll detection, this example is with jQuery:


$(function() {
 $(window).on("scroll", function() {
   var fromTop = $(window).scrollTop();
   console.log(fromTop);
   $("body").toggleClass("has-scrolled", (fromTop > 1100));
  });
}); 

in CSS something like:


#nav { 
 opacity: 0; 
 transition: opacity 2s;
} 
.has-scrolled #nav { 
 opacity:1; 
 }