You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey , i want know that in future is there any plan to add the shimmering animation defualt in tailwind css, animation moving from left to right
also in this
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
hey , i want know that in future is there any plan to add the shimmering animation defualt in tailwind css, animation moving from left to right
also in this
@theme {
--animate-shimmer: shimmer 3s linear infinite;
@Keyframes shimmer {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
}
.shimmer {
background-image: linear-gradient(
90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.3) 50%,
rgba(255, 255, 255, 0) 100%
);
background-size: 200% 100%;
animation: var(--animate-shimmer);
}
this effect of the shimmering in showing when i am using only "shimmer" word and not with the animate-shimmer why????
Beta Was this translation helpful? Give feedback.
All reactions