Advertisement
all2aller

Keyframe

Oct 12th, 2014
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. #box {
  2.   -webkit-animation: my-animation 5s infinite; /* Safari 4+ */
  3.   -moz-animation:    my-animation 5s infinite; /* Fx 5+ */
  4.   -o-animation:      my-animation 5s infinite; /* Opera 12+ */
  5.   animation:         my-animation 5s infinite; /* IE 10+, Fx 29+ */
  6. }
  7.  
  8. @keyframes my-animation {
  9.  0% {
  10.    transform: translate(0px, 0px);
  11.  }
  12.  25% {
  13.    transform: translate(30px, 15px);
  14.  }
  15.  50% {
  16.    transform: translate(60px, 30px);
  17.  }
  18.  /* … */
  19.  100% {
  20.    transform: translate(300px, 150px);
  21.  }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement