Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @keyframes right {
  2. 100% {
  3. left: 500000px;
  4. }
  5. }
  6.  
  7. .animate-right {
  8. animate: right 500s 1;
  9. }
  10.  
  11. function(e) {
  12. var el = this;
  13.  
  14. setTimeout(function() {
  15. el.className = el.className.replace('animate-right', '');
  16. }, 500);
  17.  
  18. el.className += ' ' + animate-right;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement