Skip to content

Instantly share code, notes, and snippets.

@niikkiin
Created February 17, 2021 15:38
Show Gist options
  • Save niikkiin/3569f7acced188703a3556c889431727 to your computer and use it in GitHub Desktop.
Save niikkiin/3569f7acced188703a3556c889431727 to your computer and use it in GitHub Desktop.
SCSS MIXINS FOR ANIMATIONS
// keyframes mixin
@mixin keyframes($name) {
@-webkit-keyframes #{$name} {
@content;
}
@-moz-keyframes #{$name} {
@content;
}
@-ms-keyframes #{$name} {
@content;
}
@keyframes #{$name} {
@content;
}
}
// how to use keyframes mixin
@include keyframes(bgcolor) {
0% {
background-color: #ffccf2;
}
50% {
background-color: #ccffcc;
}
100% {
background-color: #ccffff;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment