mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
40 lines
809 B
SCSS
40 lines
809 B
SCSS
|
/* Wobble To Bottom Right */
|
||
|
@include keyframes(#{$nameSpace}-wobble-to-bottom-right) {
|
||
|
16.65% {
|
||
|
@include prefixed(transform, translate(8px, 8px));
|
||
|
}
|
||
|
|
||
|
33.3% {
|
||
|
@include prefixed(transform, translate(-6px, -6px));
|
||
|
}
|
||
|
|
||
|
49.95% {
|
||
|
@include prefixed(transform, translate(4px, 4px));
|
||
|
}
|
||
|
|
||
|
66.6% {
|
||
|
@include prefixed(transform, translate(-2px, -2px));
|
||
|
}
|
||
|
|
||
|
83.25% {
|
||
|
@include prefixed(transform, translate(1px, 1px));
|
||
|
}
|
||
|
|
||
|
100% {
|
||
|
@include prefixed(transform, translate(0, 0));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin wobble-to-bottom-right {
|
||
|
@include hacks();
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
@include prefixed(animation-name, #{$nameSpace}-wobble-to-bottom-right);
|
||
|
@include prefixed(animation-duration, 1s);
|
||
|
@include prefixed(animation-timing-function, ease-in-out);
|
||
|
@include prefixed(animation-iteration-count, 1);
|
||
|
}
|
||
|
}
|