loveberry

pink wave text

May 19th, 2023 (edited)
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <style>
  2. .pinkwave {
  3. font-size: 2em;
  4. font-weight: bold;
  5. font-family: arial;
  6. color: transparent;
  7. background: url("https://files.catbox.moe/db8ne8.png") repeat-x #fff;
  8. background-size: auto;
  9. background-clip: border-box;
  10. -webkit-background-clip: text;
  11. background-clip: text;
  12. background-size: 200% 100%;
  13. background-position-x: 0;
  14. background-position-y: 2em;
  15. -webkit-transition: background-position-y 0.6s ease;
  16. transition: background-position-y 0.6s ease;
  17. -webkit-animation: waveAnimation 4s infinite linear;
  18. animation: waveAnimation 4s infinite linear;
  19. filter: drop-shadow(1px 1px white) drop-shadow(-1px 1px white) drop-shadow(1px -1px white) drop-shadow(-1px -1px white) drop-shadow(1px 1px black) drop-shadow(-1px 1px black) drop-shadow(1px -1px black) drop-shadow(-1px -1px black) ;
  20. background-position-x: 0;
  21. background-position-y: 0;
  22. -webkit-animation-play-state: running;
  23. animation-play-state: running;
  24. }
  25.  
  26. @keyframes waveAnimation{
  27. from {
  28. background-position-x: 0%;
  29. }
  30. to {
  31. background-position-x: 200%;
  32. }
  33. }
  34. </style>
  35.  
  36. <span class="pinkwave">WAVE</span>
Add Comment
Please, Sign In to add comment