Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <!doctype html>
  2.  
  3. <html>
  4. <head>
  5. <title>
  6.  
  7. Experiment: animation with movements
  8.  
  9. </title>
  10.  
  11. footer{
  12.  
  13. width: 100px;
  14. height: 100px;
  15. background: red;
  16. animation: mymove 5s;
  17. animation-play-state: running;
  18.  
  19. @-moz-keyframes mymove {
  20.  
  21. from {left:50px;}
  22. to {left:200px;}
  23. }
  24.  
  25. @keyframes mymove {
  26.  
  27. from {left:50px;}
  28. to {left:200px;}
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement