Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <div id="anim01">
  2. <h1 class="animText01">Welcome to website</h1>
  3. </div>
  4.  
  5. <div id="anim02">
  6. <h1 class="animText01">Hello</h1>
  7. </div>
  8.  
  9. <div id="anim03">
  10. <h1 class="animText01">Hi there</h1>
  11. </div>
  12.  
  13. <div id="anim04">
  14. <h1 class="animText01">Good evening</h1>
  15. </div>
  16.  
  17. <div id="anim05">
  18. <h1 class="animText01">Howdy</h1>
  19. </div>
  20.  
  21. <script type="text/javascript">
  22. $(document).ready(function(){
  23. $("#anim01").hide().fadeIn(500);
  24. $(".animText01").delay(500).animate({'marginTop': '+=350'}, 1000).delay(2000).fadeOut(500);
  25.  
  26. });
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement