Well, animate.css makes it easy to add animations to any HTML element you want. What I would like to know: how do I initialize or add an animate.css animation using jQuery?
I searched the web, and found a few similar questions asked on StackOverflow , but the problem is I am not too knowledgeable about jQuery and hence thought I would post a specific question on this topic. I would appreciate anybody's help or guidance .
Below is my code.
<section id="meet-the-team">
<div class="container">
<div class="gap "></div>
<h1 class="center">Meet the Team</h1>
<p class="lead center">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<div class="gap"></div>
<div class="col-md-3 col-xs-6">
<div class="center">
<p><img class="img-responsive img-thumbnail img-circle" src="images/vet.JPG" alt="" ></p>
<h5>David J. Robbins<small class="designation muted">Senior Vice President</small></h5>
<p>Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor.</p>
<a class="btn btn-social btn-facebook" href="#"><i class="icon-facebook"></i></a> <a class="btn btn-social btn-google-plus" href="#"><i class="icon-google-plus"></i></a> <a class="btn btn-social btn-twitter" href="#"><i class="icon-twitter"></i></a>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="center">
<p><img class="img-responsive img-thumbnail img-circle" src="images/vet.JPG" alt="" ></p>
<h5>David J. Robbins<small class="designation muted">Senior Vice President</small></h5>
<p>Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor.</p>
<a class="btn btn-social btn-facebook" href="#"><i class="icon-facebook"></i></a> <a class="btn btn-social btn-google-plus" href="#"><i class="icon-google-plus"></i></a> <a class="btn btn-social btn-twitter" href="#"><i class="icon-twitter"></i></a>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="center">
<p><img class="img-responsive img-thumbnail img-circle" src="images/vet.JPG" alt="" ></p>
<h5>David J. Robbins<small class="designation muted">Senior Vice President</small></h5>
<p>Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor.</p>
<a class="btn btn-social btn-facebook" href="#"><i class="icon-facebook"></i></a> <a class="btn btn-social btn-google-plus" href="#"><i class="icon-google-plus"></i></a> <a class="btn btn-social btn-twitter" href="#"><i class="icon-twitter"></i></a>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="center">
<p><img class="img-responsive img-thumbnail img-circle" src="images/vet.JPG" alt="" ></p>
<h5>David J. Robbins<small class="designation muted">Senior Vice President</small></h5>
<p>Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor.</p>
<a class="btn btn-social btn-facebook" href="#"><i class="icon-facebook"></i></a> <a class="btn btn-social btn-google-plus" href="#"><i class="icon-google-plus"></i></a> <a class="btn btn-social btn-twitter" href="#"><i class="icon-twitter"></i></a>
</div>
</div>
</div>
</div>
</section><!--/#about-us-->
How do I add the class "animate BouceIn" when the page only scrolls to that part of the page i.e "meet-the-team"?