Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <style type="text/css">
  6. #d1
  7. {
  8. width: 100px;
  9. height: 100px;
  10. border: solid 4px black;
  11. background-color: green;
  12. color: white;
  13. text-align: center;
  14. padding: 10px;
  15. animation-name: anima;
  16. animation-duartion: 12s;
  17. animation-timing-function: ease-in;
  18. animation-iteration-count: infinite;
  19. }
  20. @keyframes anima
  21. {
  22. 0% {background-color: red;}
  23. 50% {background-color: blue;}
  24. 100% {width: 200px;}
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div id="d1">HALO</div>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement