css: Add pulse animation
This commit is contained in:
parent
d79d753b51
commit
9a900c62f5
|
@ -346,4 +346,21 @@
|
|||
100% {
|
||||
opacity: 0.2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% {
|
||||
opacity: .5;
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 1;
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue