Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. div {
  2. width: 100px;
  3. height: 100px;
  4. background-color: red;
  5. animation-name: example;
  6. animation-duration: 4s;
  7. }
  8.  
  9. /* Standard syntax */
  10. @keyframes example {
  11. from {background-color: red;}
  12. to {background-color: yellow;}
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement