Skip to content

Instantly share code, notes, and snippets.

@wgx
Created March 14, 2022 15:29
Show Gist options
  • Save wgx/66060f7ff831d35b9e8baee96627266b to your computer and use it in GitHub Desktop.
Save wgx/66060f7ff831d35b9e8baee96627266b to your computer and use it in GitHub Desktop.
slowly cycle the hue of an image
.huepulse {
-webkit-animation: huepulse 10s infinite;
}
@-webkit-keyframes huepulse {
0%, 100% { -webkit-filter: hue-rotate(0deg); }
50% { -webkit-filter: hue-rotate(180deg); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment