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/c6722ce94c932ee1aa7043c138460e2f to your computer and use it in GitHub Desktop.
Save psahalot/c6722ce94c932ee1aa7043c138460e2f to your computer and use it in GitHub Desktop.
PowerPack Fancy Heading
@-webkit-keyframes pp-hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@keyframes pp-hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@-webkit-keyframes pp-fade {
0%,100% { opacity: 0 }
50% { opacity: 1 }
}
@keyframes pp-fade {
0%,100% { opacity: 0 }
50% { opacity: 1 }
}
@-webkit-keyframes pp-rotate {
from {
-webkit-transform: rotateY(0deg);
}
to {
-webkit-transform: rotateY(360deg);
}
}
@keyframes pp-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