You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
324 B
14 lines
324 B
@keyframes ball-pulse-round {
|
|
0%, 80%, 100% {
|
|
transform: scale(0);
|
|
-webkit-transform: scale(0); }
|
|
40% {
|
|
transform: scale(1);
|
|
-webkit-transform: scale(1); } }
|
|
|
|
.ball-pulse-round > div {
|
|
animation-fill-mode: both;
|
|
width: 10px;
|
|
height: 10px;
|
|
animation: ball-pulse-round 1.2s infinite ease-in-out; }
|