Skip to content

Instantly share code, notes, and snippets.

@frankew
Created May 4, 2021 00:01
Show Gist options
  • Save frankew/7d209cc3cd2876e36c3a43882fd3df23 to your computer and use it in GitHub Desktop.
Save frankew/7d209cc3cd2876e36c3a43882fd3df23 to your computer and use it in GitHub Desktop.
ExZqqaP
<img id="colors" src="https://frankie.winters.design/wp-content/uploads/sites/14/2021/05/Oval.png">
<img id="mask" src="https://frankie.winters.design/wp-content/uploads/sites/14/2021/05/Whorl-Mask.png">
#colors {
animation: rotation 20s;
animation-iteration-count: infinite;
animation-timing-function: linear;
width: 500px;
}
#mask {
position: absolute;
left: 0;
width: 560px;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment