0

How would you go about making content fade in such as paragraphs, pics, etc. Hoping to make the contents of the page fade in as I scroll down the page.

1 Answers1

0

You can use jQuery's .fadeIn function for this.

$(".hiddenContent").fadeIn()

If you would like some additional information about how this fits into your scrolling functionality then check: Fade in div when it's scrolled into viewport

Luke Glazebrook
  • 580
  • 2
  • 14