Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. HTML:
  2. <div id='container' class='flexcontainer'>
  3. <div id="a" style="background: #ff0077" class="transition left"></div>
  4. <div id="b" style="background: #0066ff" class="transition right"></div>
  5. <div id="c" style="background: #ffee00" class="transition left"></div>
  6. <div id="d" style="background: #22aaaa" class="transition right"></div>
  7. </div>
  8.  
  9. Javascript:
  10. where = $("#a").position();
  11. lefty = where.left
  12. topy = where.top
  13.  
  14. function revert(){
  15. $("#a").animate({left: lefty, top: topy}, 3000);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement