aniText.css 578 B

123456789101112131415161718192021222324252627282930313233
  1. svg text {
  2. /* font-family: Lora; */
  3. letter-spacing: 10px;
  4. stroke: #ff7b7b;
  5. font-size: 100px;
  6. font-weight: 700;
  7. stroke-width: 3;
  8. animation: textAnimate 5s infinite alternate;
  9. }
  10. @keyframes textAnimate {
  11. 0% {
  12. stroke-dasharray: 0 50%;
  13. stroke-dashoffset: 20%;
  14. fill:hsl(0, 100%, 64%)
  15. }
  16. 100% {
  17. stroke-dasharray: 50% 0;
  18. stroke-dashoffstet: -20%;
  19. fill: hsla(0, 78%, 41%, 0.081)
  20. }
  21. }
  22. .minipig {
  23. font-size: 52px;
  24. font-weight: 700;
  25. letter-spacing: 5px;
  26. stroke-width: 2;
  27. }