Made loader animation, missing animation mixins.

This commit is contained in:
2018-05-08 08:33:13 +10:00
parent 0544c198e8
commit b1d29476c5
3 changed files with 41 additions and 15 deletions

View File

@ -23,17 +23,26 @@
}
}
@mixin t-animation-name($animation_name) {
@include t-prefix-property("animation-name", $animation_name, webkit moz spec);
@mixin t-animation-name($name) {
@include t-prefix-property("animation-name", $name, webkit moz spec);
}
@mixin t-animation-delay($animation_name) {
@include t-prefix-property("animation-delay", $animation_name, webkit moz spec);
@mixin t-animation-delay($delay) {
@include t-prefix-property("animation-delay", $delay, webkit moz spec);
}
@mixin t-animation-duration($animation_name) {
@include t-prefix-property("animation-duration", $animation_name, webkit moz spec);
@mixin t-animation-duration($duration) {
@include t-prefix-property("animation-duration", $duration, webkit moz spec);
}
@mixin t-animation-fill-mode($animation_name) {
@include t-prefix-property("animation-fill-mode", $animation_name, webkit moz spec);
@mixin t-animation-fill-mode($fills) {
@include t-prefix-property("animation-fill-mode", $fills, webkit moz spec);
}
@mixin t-animation-iteration-count($iterations) {
@include t-prefix-property("animation-iteration-count", $iterations, webkit moz spec);
}
@mixin t-animation-timing-function($bezier) {
@include t-prefix-property("animation-timing-function", $bezier, webkit moz spec);
}