Advertisement
solielios

Flickering text ♡

Sep 28th, 2021 (edited)
1,338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1.  
  2. </br>
  3. <div id="sol">
  4. <div class="soltit"><span class="solro">You can change</span> <span class="solaz">the speed too</span> </div>
  5. <style>
  6.  
  7. @keyframes solpar {
  8. 0% {
  9. opacity: 1;
  10. }
  11. 50% {
  12. opacity: 0;
  13. }
  14. 100% {
  15. opacity: 1;
  16. }
  17. }
  18.  
  19. .soltit {
  20. width: 400px;
  21. font-family: 'Lato';
  22. color: var(--rcd4);
  23. text-align: center;
  24. font-size: 25px;
  25. text-transform: uppercase;
  26. }
  27.  
  28. .solro {
  29. color: var(--rcd2);
  30. text-shadow: 0px 0px 2px var(--rcd2), 0px 0px 3px var(--rcd2), 0px 0px 6px var(--rcd2), 0px 0px 10px var(--rcd2);
  31. animation: solpar 2s infinite;
  32. }
  33.  
  34. .solaz {
  35. color: var(--rcd3);
  36. text-shadow: 0px 0px 2px var(--rcd3), 0px 0px 3px var(--rcd3), 0px 0px 6px var(--rcd3), 0px 0px 10px var(--rcd3);
  37. animation: solpar 3.5s infinite;
  38. }
  39.  
  40.  
  41. #sol { /**Vary your colors here**/
  42. --rcd1: #fbdb2e;
  43. --rcd2: #e0318e;
  44. --rcd3: #078caf;
  45. --rcd4: #FFFFFF;
  46. --rcd5: #000000;
  47. }
  48.  
  49. </style>
  50. <link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Press+Start+2P&family=Roboto:wght@300&display=swap" rel="stylesheet">
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement