Advertisement
Guest User

Untitled

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