2021-01-24 19:20:07 +08:00
|
|
|
$faa-flash-speed: 2s;
|
2021-01-23 21:07:47 +08:00
|
|
|
@keyframes flash {
|
2021-01-24 19:20:07 +08:00
|
|
|
0%, 50%, 100% {
|
|
|
|
opacity: 1;
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
2021-01-24 19:20:07 +08:00
|
|
|
25%, 75% {
|
|
|
|
opacity: 0;
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.faa-flash.animated,
|
|
|
|
.faa-flash.animated-hover:hover,
|
|
|
|
.faa-parent.animated-hover:hover > .faa-flash {
|
2021-01-24 19:20:07 +08:00
|
|
|
animation: flash $faa-flash-speed ease infinite;
|
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 {
|
2021-01-24 19:20:07 +08:00
|
|
|
animation: flash ($faa-flash-speed * $faa-speed-coeff-fast) ease infinite;
|
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 {
|
2021-01-24 19:20:07 +08:00
|
|
|
animation: flash ($faa-flash-speed * $faa-speed-coeff-slow) ease infinite;
|
2021-01-23 21:07:47 +08:00
|
|
|
}
|