Skip to content

Instantly share code, notes, and snippets.

@psahalot
Created April 9, 2021 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psahalot/8377a95a5850e44d4ef0b71fc5ab1dac to your computer and use it in GitHub Desktop.
Save psahalot/8377a95a5850e44d4ef0b71fc5ab1dac to your computer and use it in GitHub Desktop.
Oxy Ultimate Fancy Heading
/**
* Animation - Fancy Heading
*/
.oufh-text {
clear: both;
display: inline-block;
width: 100%;
}
@-webkit-keyframes oufh-hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@keyframes oufh-hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@-webkit-keyframes oufh-fade {
0%,100% { opacity: 0 }
50% { opacity: 1 }
}
@keyframes oufh-fade {
0%,100% { opacity: 0 }
50% { opacity: 1 }
}
@-webkit-keyframes oufh-rotate {
from {
-webkit-transform: rotateY(0deg);
}
to {
-webkit-transform: rotateY(360deg);
}
}
@keyframes oufh-rotate {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment