Advertisement
NisseDILLIGAF

Untitled

Feb 23rd, 2018
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. .test_out{
  2.   animation: animationFrames ease-in-out 6s;
  3.   animation-iteration-count: 1;
  4.   transform-origin: 50% 50%;
  5.   animation-fill-mode:forwards;
  6. }
  7. .test_out2{
  8.   animation: animationFrames ease-in-out 6s;
  9.   animation-delay: 0.25s;
  10.   animation-iteration-count: 1;
  11.   transform-origin: 50% 50%;
  12.   animation-fill-mode:forwards;
  13. }
  14. .test_out3{
  15.   animation: animationFrames ease-in-out 6s;
  16.   animation-delay: 0.5s;
  17.   animation-iteration-count: 1;
  18.   transform-origin: 50% 50%;
  19.   animation-fill-mode:forwards;
  20. }
  21.  
  22. @keyframes animationFrames{
  23.   0% {
  24.     transform:  translate(0px,0px)  ;
  25.   }
  26.   10% {
  27.     transform:  translate(310px,0px)  ;
  28.   }
  29.   16% {
  30.     transform:  translate(290px,0px)  ;
  31.   }
  32.   19% {
  33.     transform:  translate(300px,0px)  ;
  34.   }
  35.   70% {
  36.     transform:  translate(300px,0px)  ;
  37.   }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement