Skip to content Skip to sidebar Skip to footer

Jquery Waypoints Delays

I have three elements that I want to fadeInUp when I scroll over to them. But, now comes the delay part, I want the two elements appear after the first one has appeared. But, the p

Solution 1:

You are very nearly there.

Adding classes to use CSS animation delays was the right way to go, but those classes weren't defined anywhere!

Just include some CSS to apply the animation delays:

.delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

http://jsfiddle.net/4FNFW/141/

Post a Comment for "Jquery Waypoints Delays"