2020-10-13 14:54:55 +03:00
|
|
|
<div>
|
2021-11-05 14:51:43 +03:00
|
|
|
<style>
|
|
|
|
.spinner {
|
|
|
|
margin: 40vh auto;
|
|
|
|
width: 70px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-10-13 14:54:55 +03:00
|
|
|
|
2021-11-05 14:51:43 +03:00
|
|
|
.spinner > div {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
background-color: rgb(50, 48, 47);
|
2020-10-13 14:54:55 +03:00
|
|
|
|
2021-11-05 14:51:43 +03:00
|
|
|
border-radius: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
animation: sk-bouncedelay 1.4s infinite ease-in-out both;
|
|
|
|
}
|
2020-10-13 14:54:55 +03:00
|
|
|
|
2021-11-05 14:51:43 +03:00
|
|
|
.spinner .bounce1 {
|
|
|
|
animation-delay: -0.32s;
|
|
|
|
}
|
2020-10-13 14:54:55 +03:00
|
|
|
|
2021-11-05 14:51:43 +03:00
|
|
|
.spinner .bounce2 {
|
|
|
|
animation-delay: -0.16s;
|
|
|
|
}
|
2020-10-13 14:54:55 +03:00
|
|
|
|
2021-11-05 14:51:43 +03:00
|
|
|
@keyframes sk-bouncedelay {
|
|
|
|
0%,
|
|
|
|
80%,
|
|
|
|
100% {
|
|
|
|
transform: scale(0);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="spinner">
|
|
|
|
<div class="bounce1"></div>
|
|
|
|
<div class="bounce2"></div>
|
|
|
|
<div class="bounce3"></div>
|
|
|
|
</div>
|
2020-10-13 14:54:55 +03:00
|
|
|
</div>
|