mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
58 lines
886 B
HTML
58 lines
886 B
HTML
<div class="container">
|
|
<div class="block"></div>
|
|
<div class="block"></div>
|
|
<div class="block"></div>
|
|
<div class="block"></div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by JkHuger - Tags: loader */
|
|
.container {
|
|
width: 80px;
|
|
margin: 100px auto;
|
|
}
|
|
|
|
.block {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
float: left;
|
|
margin: 0 10px 10px 0;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 3px;
|
|
background: #FFF;
|
|
}
|
|
|
|
.block:nth-child(4n+1) {
|
|
animation: wave_23 2s ease .0s infinite;
|
|
}
|
|
|
|
.block:nth-child(4n+2) {
|
|
animation: wave_23 2s ease .2s infinite;
|
|
}
|
|
|
|
.block:nth-child(4n+3) {
|
|
animation: wave_23 2s ease .4s infinite;
|
|
}
|
|
|
|
.block:nth-child(4n+4) {
|
|
animation: wave_23 2s ease .6s infinite;
|
|
margin-right: 0;
|
|
}
|
|
|
|
@keyframes wave_23 {
|
|
0% {
|
|
top: 0;
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
top: 30px;
|
|
opacity: .2;
|
|
}
|
|
|
|
100% {
|
|
top: 0;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|