2021-01-24 19:32:01 +08:00
|
|
|
/*! font-awesome-animation v1.1.1 | MIT License | https://github.com/l-lin/font-awesome-animation */
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes bounce {
|
|
|
|
0%, 10%, 20%, 50%, 80%, 100% {
|
|
|
|
transform: translateY(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
40%, 60% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translateY(-15px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes bounce {
|
|
|
|
0%, 10%, 20%, 50%, 80%, 100% {
|
|
|
|
transform: translateY(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
40%, 60% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translateY(-15px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes bounce-reverse {
|
|
|
|
0%, 10%, 20%, 50%, 80%, 100% {
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
40%, 60% {
|
|
|
|
transform: translateY(15px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes bounce-reverse {
|
|
|
|
0%, 10%, 20%, 50%, 80%, 100% {
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
40%, 60% {
|
|
|
|
transform: translateY(15px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-bounce.animated,
|
|
|
|
.faa-bounce.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce {
|
|
|
|
-webkit-animation: bounce 2s ease infinite;
|
|
|
|
animation: bounce 2s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-bounce.animated.faa-fast,
|
|
|
|
.faa-bounce.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce.faa-fast {
|
|
|
|
-webkit-animation: bounce 1s ease infinite;
|
|
|
|
animation: bounce 1s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-bounce.animated.faa-slow,
|
|
|
|
.faa-bounce.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce.faa-slow {
|
|
|
|
-webkit-animation: bounce 3s ease infinite;
|
|
|
|
animation: bounce 3s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
.faa-bounce.faa-reverse.animated,
|
|
|
|
.faa-bounce.faa-reverse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce.faa-reverse {
|
|
|
|
-webkit-animation: bounce-reverse 2s ease infinite;
|
|
|
|
animation: bounce-reverse 2s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-bounce.faa-reverse.animated.faa-fast,
|
|
|
|
.faa-bounce.faa-reverse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce.faa-reverse.faa-fast {
|
|
|
|
-webkit-animation: bounce-reverse 1s ease infinite;
|
|
|
|
animation: bounce-reverse 1s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-bounce.faa-reverse.animated.faa-slow,
|
|
|
|
.faa-bounce.faa-reverse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-bounce.faa-reverse.faa-slow {
|
|
|
|
-webkit-animation: bounce-reverse 3s ease infinite;
|
|
|
|
animation: bounce-reverse 3s ease infinite;
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes burst {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: .6;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: scale(1.8);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes burst {
|
|
|
|
0% {
|
|
|
|
opacity: .6;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: scale(1.8);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
.faa-burst.animated,
|
|
|
|
.faa-burst.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-burst {
|
|
|
|
-webkit-animation: burst 2s infinite linear;
|
|
|
|
animation: burst 2s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-burst.animated.faa-fast,
|
|
|
|
.faa-burst.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-burst.faa-fast {
|
|
|
|
-webkit-animation: burst 1s infinite linear;
|
|
|
|
animation: burst 1s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-burst.animated.faa-slow,
|
|
|
|
.faa-burst.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-burst.faa-slow {
|
|
|
|
-webkit-animation: burst 3s infinite linear;
|
|
|
|
animation: burst 3s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes falling {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translateY(-50%);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateY(0%);
|
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
|
|
|
transform: translateY(50%);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes falling {
|
|
|
|
0% {
|
|
|
|
transform: translateY(-50%);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateY(0%);
|
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
|
|
|
transform: translateY(50%);
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
@-webkit-keyframes falling-reverse {
|
|
|
|
0% {
|
|
|
|
transform: translateY(50%);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateY(0%);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(-50%);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes falling-reverse {
|
|
|
|
0% {
|
|
|
|
transform: translateY(50%);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateY(0%);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: translateY(-50%);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-falling.animated,
|
|
|
|
.faa-falling.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling {
|
|
|
|
-webkit-animation: falling 2s linear infinite;
|
|
|
|
animation: falling 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-falling.animated.faa-fast,
|
|
|
|
.faa-falling.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling.faa-fast {
|
|
|
|
-webkit-animation: falling 1s linear infinite;
|
|
|
|
animation: falling 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-falling.animated.faa-slow,
|
|
|
|
.faa-falling.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling.faa-slow {
|
|
|
|
-webkit-animation: falling 3s linear infinite;
|
|
|
|
animation: falling 3s linear infinite;
|
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
.faa-falling.faa-reverse.animated,
|
|
|
|
.faa-falling.faa-reverse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling.faa-reverse,
|
|
|
|
.faa-rising.animated,
|
|
|
|
.faa-rising.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-rising {
|
|
|
|
-webkit-animation: falling-reverse 2s linear infinite;
|
|
|
|
animation: falling-reverse 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-falling.faa-reverse.animated.faa-fast,
|
|
|
|
.faa-falling.faa-reverse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling.faa-reverse.faa-fast,
|
|
|
|
.faa-rising.animated.faa-fast,
|
|
|
|
.faa-rising.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-rising.faa-fast {
|
|
|
|
-webkit-animation: falling-reverse 1s linear infinite;
|
|
|
|
animation: falling-reverse 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-falling.faa-reverse.animated.faa-slow,
|
|
|
|
.faa-falling.faa-reverse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-falling.faa-reverse.faa-slow,
|
|
|
|
.faa-rising.animated.faa-slow,
|
|
|
|
.faa-rising.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-rising.faa-slow {
|
|
|
|
-webkit-animation: falling-reverse 3s linear infinite;
|
|
|
|
animation: falling-reverse 3s linear infinite;
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes flash {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 50%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
25%, 75% {
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes flash {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 50%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
25%, 75% {
|
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-flash.animated,
|
|
|
|
.faa-flash.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-flash {
|
|
|
|
-webkit-animation: flash 2s ease infinite;
|
|
|
|
animation: flash 2s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-flash.animated.faa-fast,
|
|
|
|
.faa-flash.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-flash.faa-fast {
|
|
|
|
-webkit-animation: flash 1s ease infinite;
|
|
|
|
animation: flash 1s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-flash.animated.faa-slow,
|
|
|
|
.faa-flash.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-flash.faa-slow {
|
|
|
|
-webkit-animation: flash 3s ease infinite;
|
|
|
|
animation: flash 3s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes float {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translateY(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateY(-6px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes float {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translateY(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateY(-6px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-float.animated,
|
|
|
|
.faa-float.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-float {
|
|
|
|
-webkit-animation: float 2s linear infinite;
|
|
|
|
animation: float 2s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-float.animated.faa-fast,
|
|
|
|
.faa-float.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-float.faa-fast {
|
|
|
|
-webkit-animation: float 1s linear infinite;
|
|
|
|
animation: float 1s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-float.animated.faa-slow,
|
|
|
|
.faa-float.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-float.faa-slow {
|
|
|
|
-webkit-animation: float 3s linear infinite;
|
|
|
|
animation: float 3s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes horizontal {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 12%, 24%, 36%, 100% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 18%, 30% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(5px, 0);
|
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
2021-01-23 04:11:11 +08:00
|
|
|
@keyframes horizontal {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 12%, 24%, 36%, 100% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 18%, 30% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(5px, 0);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes horizontal-reverse {
|
|
|
|
0%, 12%, 24%, 36%, 100% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 18%, 30% {
|
|
|
|
transform: translate(-5px, 0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes horizontal-reverse {
|
|
|
|
0%, 12%, 24%, 36%, 100% {
|
2021-01-23 04:11:11 +08:00
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 18%, 30% {
|
|
|
|
transform: translate(-5px, 0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-horizontal.animated,
|
|
|
|
.faa-horizontal.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal {
|
|
|
|
-webkit-animation: horizontal 2s ease infinite;
|
|
|
|
animation: horizontal 2s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-horizontal.animated.faa-fast,
|
|
|
|
.faa-horizontal.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal.faa-fast {
|
|
|
|
-webkit-animation: horizontal 1s ease infinite;
|
|
|
|
animation: horizontal 1s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-horizontal.animated.faa-slow,
|
|
|
|
.faa-horizontal.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal.faa-slow {
|
|
|
|
-webkit-animation: horizontal 3s ease infinite;
|
|
|
|
animation: horizontal 3s ease infinite;
|
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
.faa-horizontal.faa-reverse.animated,
|
|
|
|
.faa-horizontal.faa-reverse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal.faa-reverse {
|
|
|
|
-webkit-animation: horizontal-reverse 2s ease infinite;
|
|
|
|
animation: horizontal-reverse 2s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-horizontal.faa-reverse.animated.faa-fast,
|
|
|
|
.faa-horizontal.faa-reverse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal.faa-reverse.faa-fast {
|
|
|
|
-webkit-animation: horizontal-reverse 1s ease infinite;
|
|
|
|
animation: horizontal-reverse 1s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-horizontal.faa-reverse.animated.faa-slow,
|
|
|
|
.faa-horizontal.faa-reverse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-horizontal.faa-reverse.faa-slow {
|
|
|
|
-webkit-animation: horizontal-reverse 3s ease infinite;
|
|
|
|
animation: horizontal-reverse 3s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes passing {
|
2021-01-23 21:07:47 +08:00
|
|
|
0% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(-50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateX(0%);
|
2021-01-23 04:11:11 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(50%);
|
2021-01-23 04:11:11 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
@keyframes passing {
|
2021-01-23 21:07:47 +08:00
|
|
|
0% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(-50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: translateX(0%);
|
2021-01-23 04:11:11 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(50%);
|
2021-01-23 04:11:11 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
@-webkit-keyframes passing-reverse {
|
2021-01-23 21:07:47 +08:00
|
|
|
0% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateX(0%);
|
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(-50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
@keyframes passing-reverse {
|
2021-01-23 21:07:47 +08:00
|
|
|
0% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
50% {
|
|
|
|
transform: translateX(0%);
|
|
|
|
opacity: 1;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
100% {
|
2021-01-24 19:20:07 +08:00
|
|
|
transform: translateX(-50%);
|
2021-01-23 21:07:47 +08:00
|
|
|
opacity: 0;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-passing.animated,
|
|
|
|
.faa-passing.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing {
|
|
|
|
-webkit-animation: passing 2s linear infinite;
|
|
|
|
animation: passing 2s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-passing.animated.faa-fast,
|
|
|
|
.faa-passing.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing.faa-fast {
|
|
|
|
-webkit-animation: passing 1s linear infinite;
|
|
|
|
animation: passing 1s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-passing.animated.faa-slow,
|
|
|
|
.faa-passing.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing.faa-slow {
|
|
|
|
-webkit-animation: passing 3s linear infinite;
|
|
|
|
animation: passing 3s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
.faa-passing.faa-reverse.animated,
|
|
|
|
.faa-passing.faa-reverse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing.faa-reverse {
|
|
|
|
-webkit-animation: passing-reverse 2s linear infinite;
|
|
|
|
animation: passing-reverse 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-passing.faa-reverse.animated.faa-fast,
|
|
|
|
.faa-passing.faa-reverse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing.reverse.faa-fast {
|
|
|
|
-webkit-animation: passing-reverse 1s linear infinite;
|
|
|
|
animation: passing-reverse 1s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-passing.faa-reverse.animated.faa-slow,
|
|
|
|
.faa-passing.faa-reverse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-passing.faa-reverse.faa-slow {
|
|
|
|
-webkit-animation: passing-reverse 3s linear infinite;
|
|
|
|
animation: passing-reverse 3s linear infinite;
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes pulse {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: scale(0.8);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes pulse {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
transform: scale(0.8);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-pulse.animated,
|
|
|
|
.faa-pulse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-pulse {
|
|
|
|
-webkit-animation: pulse 2s linear infinite;
|
|
|
|
animation: pulse 2s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-pulse.animated.faa-fast,
|
|
|
|
.faa-pulse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-pulse.faa-fast {
|
|
|
|
-webkit-animation: pulse 1s linear infinite;
|
|
|
|
animation: pulse 1s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-pulse.animated.faa-slow,
|
|
|
|
.faa-pulse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-pulse.faa-slow {
|
|
|
|
-webkit-animation: pulse 3s linear infinite;
|
|
|
|
animation: pulse 3s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes ring {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-15deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
2% {
|
|
|
|
transform: rotate(15deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
4%, 12% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-18deg);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 14% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(18deg);
|
|
|
|
}
|
|
|
|
8% {
|
|
|
|
transform: rotate(-22deg);
|
|
|
|
}
|
|
|
|
10% {
|
|
|
|
transform: rotate(22deg);
|
|
|
|
}
|
|
|
|
16% {
|
|
|
|
transform: rotate(-12deg);
|
|
|
|
}
|
|
|
|
18% {
|
|
|
|
transform: rotate(12deg);
|
|
|
|
}
|
|
|
|
20%, 100% {
|
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes ring {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-15deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
2% {
|
|
|
|
transform: rotate(15deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
4%, 12% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-18deg);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
6%, 14% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(18deg);
|
|
|
|
}
|
|
|
|
8% {
|
|
|
|
transform: rotate(-22deg);
|
|
|
|
}
|
|
|
|
10% {
|
|
|
|
transform: rotate(22deg);
|
|
|
|
}
|
|
|
|
16% {
|
|
|
|
transform: rotate(-12deg);
|
|
|
|
}
|
|
|
|
18% {
|
|
|
|
transform: rotate(12deg);
|
|
|
|
}
|
|
|
|
20%, 100% {
|
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-ring.animated,
|
|
|
|
.faa-ring.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-ring {
|
|
|
|
-webkit-animation: ring 2s ease infinite;
|
|
|
|
animation: ring 2s ease infinite;
|
|
|
|
transform-origin-x: 50%;
|
|
|
|
transform-origin-y: 0px;
|
|
|
|
transform-origin-z: initial;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-ring.animated.faa-fast,
|
|
|
|
.faa-ring.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-ring.faa-fast {
|
|
|
|
-webkit-animation: ring 1s ease infinite;
|
|
|
|
animation: ring 1s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-ring.animated.faa-slow,
|
|
|
|
.faa-ring.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-ring.faa-slow {
|
|
|
|
-webkit-animation: ring 3s ease infinite;
|
|
|
|
animation: ring 3s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.faa-shake.animated,
|
|
|
|
.faa-shake.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-shake {
|
|
|
|
-webkit-animation: wrench 2.5s ease infinite;
|
|
|
|
animation: wrench 2.5s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-shake.animated.faa-fast,
|
|
|
|
.faa-shake.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-shake.faa-fast {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: wrench 1.25s ease infinite;
|
|
|
|
animation: wrench 1.25s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.faa-shake.animated.faa-slow,
|
|
|
|
.faa-shake.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-shake.faa-slow {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: wrench 3.75s ease infinite;
|
|
|
|
animation: wrench 3.75s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes spin {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(359deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes spin {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
100% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(359deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-24 19:20:07 +08:00
|
|
|
@-webkit-keyframes spin-reverse {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(-359deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin-reverse {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(-359deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-spin.animated,
|
|
|
|
.faa-spin.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin {
|
|
|
|
-webkit-animation: spin 1.5s linear infinite;
|
|
|
|
animation: spin 1.5s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-spin.animated.faa-fast,
|
|
|
|
.faa-spin.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin.faa-fast {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: spin 0.75s linear infinite;
|
|
|
|
animation: spin 0.75s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-spin.animated.faa-slow,
|
|
|
|
.faa-spin.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin.faa-slow {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: spin 2.25s linear infinite;
|
|
|
|
animation: spin 2.25s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-spin.faa-reverse.animated,
|
|
|
|
.faa-spin.faa-reverse.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin.faa-reverse {
|
|
|
|
-webkit-animation: spin-reverse 1.5s linear infinite;
|
|
|
|
animation: spin-reverse 1.5s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-spin.faa-reverse.animated.faa-fast,
|
|
|
|
.faa-spin.faa-reverse.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin.faa-reverse.faa-fast {
|
|
|
|
-webkit-animation: spin-reverse 0.75s linear infinite;
|
|
|
|
animation: spin-reverse 0.75s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faa-spin.faa-reverse.animated.faa-slow,
|
|
|
|
.faa-spin.faa-reverse.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-spin.faa-reverse.faa-slow {
|
|
|
|
-webkit-animation: spin-reverse 2.25s linear infinite;
|
|
|
|
animation: spin-reverse 2.25s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes tada {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: scale(1);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
10%, 20% {
|
|
|
|
transform: scale(0.9) rotate(-8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
30%, 50%, 70% {
|
|
|
|
transform: scale(1.3) rotate(8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
40%, 60% {
|
|
|
|
transform: scale(1.3) rotate(-8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
80%, 100% {
|
|
|
|
transform: scale(1) rotate(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@keyframes tada {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: scale(1);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
10%, 20% {
|
|
|
|
transform: scale(0.9) rotate(-8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
30%, 50%, 70% {
|
|
|
|
transform: scale(1.3) rotate(8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
40%, 60% {
|
|
|
|
transform: scale(1.3) rotate(-8deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
80%, 100% {
|
|
|
|
transform: scale(1) rotate(0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-tada.animated,
|
|
|
|
.faa-tada.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-tada {
|
|
|
|
-webkit-animation: tada 2s linear infinite;
|
|
|
|
animation: tada 2s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-tada.animated.faa-fast,
|
|
|
|
.faa-tada.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-tada.faa-fast {
|
|
|
|
-webkit-animation: tada 1s linear infinite;
|
|
|
|
animation: tada 1s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-tada.animated.faa-slow,
|
|
|
|
.faa-tada.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-tada.faa-slow {
|
|
|
|
-webkit-animation: tada 3s linear infinite;
|
|
|
|
animation: tada 3s linear infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes vertical {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 8%, 16% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translate(0, -3px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
4%, 12%, 20% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translate(0, 3px);
|
|
|
|
}
|
|
|
|
22%, 100% {
|
|
|
|
transform: translate(0, 0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes vertical {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 8%, 16% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translate(0, -3px);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
4%, 12%, 20% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: translate(0, 3px);
|
|
|
|
}
|
|
|
|
22%, 100% {
|
|
|
|
transform: translate(0, 0);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-vertical.animated,
|
|
|
|
.faa-vertical.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-vertical {
|
|
|
|
-webkit-animation: vertical 2s ease infinite;
|
|
|
|
animation: vertical 2s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-vertical.animated.faa-fast,
|
|
|
|
.faa-vertical.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-vertical.faa-fast {
|
|
|
|
-webkit-animation: vertical 1s ease infinite;
|
|
|
|
animation: vertical 1s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-vertical.animated.faa-slow,
|
|
|
|
.faa-vertical.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-vertical.faa-slow {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: vertical 3s ease infinite;
|
|
|
|
animation: vertical 3s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
@-webkit-keyframes wrench {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-12deg);
|
|
|
|
}
|
|
|
|
8% {
|
|
|
|
transform: rotate(12deg);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
10%, 28%, 30%, 48%, 50%, 68% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(24deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
18%, 20%, 38%, 40%, 58%, 60% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-24deg);
|
|
|
|
}
|
|
|
|
75%, 100% {
|
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
2021-01-23 21:07:47 +08:00
|
|
|
|
|
|
|
@keyframes wrench {
|
2021-01-23 04:11:11 +08:00
|
|
|
0% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-12deg);
|
|
|
|
}
|
|
|
|
8% {
|
|
|
|
transform: rotate(12deg);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
10%, 28%, 30%, 48%, 50%, 68% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(24deg);
|
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
18%, 20%, 38%, 40%, 58%, 60% {
|
2021-01-23 21:07:47 +08:00
|
|
|
transform: rotate(-24deg);
|
|
|
|
}
|
|
|
|
75%, 100% {
|
|
|
|
transform: rotate(0deg);
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-wrench.animated,
|
|
|
|
.faa-wrench.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-wrench {
|
|
|
|
-webkit-animation: wrench 2.5s ease infinite;
|
|
|
|
animation: wrench 2.5s ease infinite;
|
|
|
|
transform-origin-x: 90%;
|
|
|
|
transform-origin-y: 35%;
|
|
|
|
transform-origin-z: initial;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-wrench.animated.faa-fast,
|
|
|
|
.faa-wrench.animated-hover.faa-fast:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-wrench.faa-fast {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: wrench 1.25s ease infinite;
|
|
|
|
animation: wrench 1.25s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
2021-01-23 21:07:47 +08:00
|
|
|
.faa-wrench.animated.faa-slow,
|
|
|
|
.faa-wrench.animated-hover.faa-slow:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-wrench.faa-slow {
|
2021-01-24 19:20:07 +08:00
|
|
|
-webkit-animation: wrench 3.75s ease infinite;
|
|
|
|
animation: wrench 3.75s ease infinite;
|
2021-01-23 04:11:11 +08:00
|
|
|
}
|
|
|
|
/*# sourceMappingURL=font-awesome-animation.css.map */
|