Advertisement
Guest User

css

a guest
Dec 6th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @keyframes test {
  2. 0% {border-color: darkgreen;}
  3. 50% {border-color: red;}
  4. 70% {border-color: yellow;}
  5. 100% {border-color: grey;}
  6. }
  7.  
  8. p {
  9. width: 400px;
  10. height: 200px;
  11. border: solid yellow 20px;
  12. background-color: black;
  13. animation-name: test;
  14. animation-duration: 15s;
  15. animation-iteration-count: infinite;
  16. animation-direction: alternate;
  17.  
  18.  
  19.  
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement