Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(function() {
  2. $("#div3").animate(
  3. {top : "+=100"}, 500, function() {}
  4. );
  5. });
  6.  
  7. $(function() {
  8. $('#div3')
  9. .css({
  10. // position the element off the top of the page
  11. top : ($('#div3').height() * -1) - $('#div3').offset().top
  12. }).animate(
  13. // animate to its natural resting place
  14. {top : 0}, 500, function() {}
  15. );
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement