Last active
January 13, 2026 20:01
-
-
Save Xeven777/b8b0e3e0f8ee9771e33c198a8f6bf623 to your computer and use it in GitHub Desktop.
shimmer text animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @keyframes bg-pan { | |
| 0% { | |
| background-position: 200% 0; | |
| } | |
| 100% { | |
| background-position: -200% 0; | |
| } | |
| } | |
| .animate-bg-pan { | |
| animation: bg-pan 2.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite; | |
| } | |
| /* use with bg-size-[200%_100%] and a bg gradient */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment