Created
May 6, 2025 07:48
-
-
Save atomtigerzoo/2ed459cb69c497b24b5a2397bb01bd2d to your computer and use it in GitHub Desktop.
TailwindCSS custom background animation fade-in/out
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
<div class="animate-pulse-bg from-transparent to-sky-300">Background pulse</div> |
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
[...] | |
theme: { | |
extend: { | |
animation: { | |
'pulse-bg': 'pulse-bg 2s ease-in forwards' | |
}, | |
keyframes: { | |
'pulse-bg': { | |
'0%': { backgroundColor: 'var(--tw-gradient-from)' }, | |
'50%': { backgroundColor: 'var(--tw-gradient-to)' }, | |
'100%': { backgroundColor: 'var(--tw-gradient-from)' }, | |
} | |
} | |
}, | |
}, | |
[...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment