mirror of
https://github.com/l-lin/font-awesome-animation.git
synced 2024-12-27 22:11:33 +08:00
28 lines
612 B
SCSS
28 lines
612 B
SCSS
@keyframes burst {
|
|
0% {
|
|
opacity:.6;
|
|
}
|
|
50% {
|
|
transform:scale(1.8);
|
|
opacity:0;
|
|
}
|
|
100% {
|
|
opacity:0;
|
|
}
|
|
}
|
|
.faa-burst.animated,
|
|
.faa-burst.animated-hover:hover,
|
|
.faa-parent.animated-hover:hover > .faa-burst {
|
|
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 {
|
|
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 {
|
|
animation: burst 3s infinite linear;
|
|
}
|