I want to understand how a particular JQuery effect was implemented. On this design company's website, pictures of tablets and people "pop up" when you reach the "About Us" and "The Team" sections. How can I recreate the effect?
I tried to copy-paste the jquery code from the page but couldn't get it to work work. Can someone please tell me what I'm missing?
jQuery('.animated').appear();
jQuery(document.body).on('appear', '.slide', function () {
jQuery(this).each(function () {
jQuery(this).addClass('ae-animation-slide')
});
});
Here is the full code in JSFiddle