Skip to content

Instantly share code, notes, and snippets.

@Xeven777
Last active January 13, 2026 20:01
Show Gist options
  • Select an option

  • Save Xeven777/b8b0e3e0f8ee9771e33c198a8f6bf623 to your computer and use it in GitHub Desktop.

Select an option

Save Xeven777/b8b0e3e0f8ee9771e33c198a8f6bf623 to your computer and use it in GitHub Desktop.
shimmer text animation
@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