Advertisement
GIFCITY

candy text

Mar 9th, 2023
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <style>
  2. .candy {
  3. --color1: #1FD537;
  4. --color2: #E40010;
  5.  
  6. -webkit-text-stroke: 1px black;
  7. background: repeating-linear-gradient(
  8. 45deg,
  9. var(--color1),
  10. var(--color1) 30px,
  11. var(--color2) 30px,
  12. var(--color2) 60px
  13. );
  14.  
  15. background-clip: text;
  16. color: transparent;
  17. -webkit-background-clip: text;
  18. font-size: 3em;
  19. animation: 40s linear 0s infinite move;
  20. }
  21.  
  22. @keyframes move {
  23. from {
  24. background-position: 0px;
  25. }
  26. to {
  27. background-position: 1000px;
  28. }
  29. }
  30.  
  31. </style>
  32.  
  33. <div class="candy">text</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement