kalovski

Untitled

Feb 21st, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. .element {
  2. position: relative;
  3. animation-name: slide;
  4. animation-duration: 3s;
  5. animation-timing-function: ease-in;
  6. }
  7. @keyframes slide {
  8. 0% {
  9. left: 0;
  10. }
  11. 50% {
  12. left: 200px;
  13. }
  14. 100% {
  15. left: 400px;
  16. }
  17. }
Add Comment
Please, Sign In to add comment