Advertisement
1xptolevitico69

@keyframes animation

Oct 11th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang=en>
  3. <head>
  4. <title></title>
  5. <meta charset=utf-8>
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8. .opaque {    font-size:100px;opacity:1;text-shadow: 4px 4px 10px red;
  9.              font-family:arial;font-weight:900;    }
  10. a {   text-decoration:none;   }
  11. .opaque:nth-child(1) {  animation: opaque 3s linear infinite 1s;     }
  12. .opaque:nth-child(2) {  animation: opaque 3s linear infinite 2s;     }
  13. .opaque:nth-child(3) {  animation: opaque 3s linear infinite 3s;     }
  14. .opaque:nth-child(4) {  animation: opaque 3s linear infinite 4s;     }
  15. .opaque:nth-child(5) {  animation: opaque 3s linear infinite 5s;     }
  16. .opaque:nth-child(6) {  animation: opaque 3s linear infinite 6s;     }
  17. .opaque:nth-child(7) {  animation: opaque 3s linear infinite 7s;     }
  18.  
  19. @keyframes opaque {
  20. 50% {   opacity:0.2;     }
  21.  
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <a href='https://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp'>
  27. <span class='opaque'>L</span>
  28. <span class='opaque'>O</span>
  29. <span class='opaque'>A</span>
  30. <span class='opaque'>D</span>
  31. <span class='opaque'>I</span>
  32. <span class='opaque'>N</span>
  33. <span class='opaque'>G</span>
  34. </a>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement