feat: add color-blink animation by vedant10304 · Pull Request #1860 · animate-css/animate.css · GitHub
Skip to content

feat: add color-blink animation - #1860

Open
vedant10304 wants to merge 1 commit into
animate-css:mainfrom
vedant10304:add-color-blink-animation
Open

feat: add color-blink animation#1860
vedant10304 wants to merge 1 commit into
animate-css:mainfrom
vedant10304:add-color-blink-animation

Conversation

@vedant10304

Copy link
Copy Markdown

Description

This PR introduces a new animation called color-blink that changes the text color between red and yellow in a continuous loop. It's a lightweight effect useful for drawing attention to important text such as alerts, warnings, or promotional content.

Animation Details

@keyframes color-blink {
  0% { color: red; }
  50% { color: yellow; }
  100% { color: red; }
}

.color-blink {
  animation-name: color-blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@vedant10304

Copy link
Copy Markdown
Author

@AzzaAzza69

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants