Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <h1 id="projects-btn"></h1>
  2. <div id="selectors">
  3. <div class="circle" data-wow-delay="2s"></div>
  4. <div class="circle" data-wow-delay="3s"></div>
  5. <div class="circle" data-wow-delay="4s"></div>
  6. <div class="circle" data-wow-delay="5s"></div>
  7. <div class="circle" data-wow-delay="6s"></div>
  8. </div>
  9.  
  10. $(function() {
  11. $('#projects-btn').click(function() {
  12. $('.circle').addClass('wow fadeInUp animated');
  13. });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement