Keyframes generator added

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-05-31 04:52:44 +04:00
parent b83ea600ec
commit 76bf559070
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -0,0 +1,26 @@
// Keyframes
//
// Keyframes are used to specify the values for the animating properties at
// various points during the animation. The keyframes specify the behavior of
// one cycle of the animation; the animation may iterate zero or more times.
//
// Values: <keyframes-name> { <rule-list> }
//
// https://www.w3.org/TR/css-animations-1/#keyframes
@mixin keyframes($name) {
@-webkit-keyframes #{$name} {
@content;
}
@-moz-keyframes #{$name} {
@content;
}
@-o-keyframes #{$name} {
@content;
}
@keyframes #{$name} {
@content;
}
}