Skip to content

Instantly share code, notes, and snippets.

@belachkar
Created August 27, 2021 02:29
Show Gist options
  • Save belachkar/fbc20910f31c801132c71ccd39502906 to your computer and use it in GitHub Desktop.
Save belachkar/fbc20910f31c801132c71ccd39502906 to your computer and use it in GitHub Desktop.

CSS Logo changing color animation on hover

/* Logo animation */
@keyframes color-rotate {
  from {
    filter: hue-rotate(0deg);
  }

  to {
    filter: hue-rotate(360deg);
  }
}

.logo:hover {
  animation                : color-rotate 1s;
  animation-iteration-count: infinite;
  animation-direction      : alternate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment