Advertisement
loveberry

rotating gradient

May 20th, 2023 (edited)
223
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. .rotategrad {
  3. background-size: 100vw 100vw;
  4. margin: 0;
  5. position: relative;
  6. text-align: -webkit-center;
  7. font-size: 2em;
  8. background: repeating-linear-gradient(-45deg, hotpink 0%, lightblue 25%, hotpink 50%);
  9. -webkit-animation: 'slide' 30s infinite linear forwards;
  10. -webkit-text-fill-color: transparent;
  11. -webkit-background-clip: text;
  12. }
  13.  
  14. @keyframes slide {
  15. 0% { background-position-x: 0%; }
  16. 100% { background-position-x: 200vw; }
  17. }
  18. </style>
  19.  
  20. <div class="rotategrad">rotating gradient</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement