Forums

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

Home Forums JavaScript Fade/Slide Content In on Load/Scroll

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #166193
    Steven Morgan
    Participant

    I’m sure you’ve seen this on a bunch of sites.
    Sweet fade in/slide effect as you scroll down.
    Does anybody know of a jQuery plugin that does this? Or is it just simple handwritten (fadeIn) functions.

    Source: http://www.pagelanes.com/

    #166241
    alxvo
    Participant

    There’s a plugin called inview that lets you do stuff based on whether an element is in view, is scrolled in to view, or is scrolled out of view. It’s here. Very useful.

    https://github.com/protonet/jquery.inview

    #166248
    Alan C
    Participant

    You could try a paralax library like Skrollr

    Or write functions that trigger when the page has scrolled past a certain point like
    $(window).scroll(function () {
    blahblahblah
    });

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.