50 lines
875 B
CSS
50 lines
875 B
CSS
|
|
.default {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.defaultNativeView {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.__uni_loading_container__ {
|
|
width: 16px;
|
|
height: 16px;
|
|
border-color: #000;
|
|
animation-timing-function: linear;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.__uni-loading__ {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 100%;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: transparent;
|
|
transform: translateZ(0);
|
|
image-rendering: -webkit-optimize-contrast;
|
|
image-rendering: crisp-edges;
|
|
animation: k-loading-spin 1.333s infinite;
|
|
animation-timing-function: linear;
|
|
}
|
|
|
|
.__uni-loading__paused {
|
|
animation-play-state: paused;
|
|
}
|
|
|
|
.__loading-4-3__ {
|
|
border-color: inherit;
|
|
border-right-color: transparent !important;
|
|
}
|
|
|
|
@keyframes k-loading-spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|