39 lines
633 B
CSS
39 lines
633 B
CSS
.image-uploading {
|
|
position: absolute;
|
|
display: inline-block;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.image-uploading img {
|
|
filter: blur(5px);
|
|
opacity: 1;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
.image-uploading::before {
|
|
content: "";
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 30px;
|
|
height: 30px;
|
|
margin-top: -15px;
|
|
margin-left: -15px;
|
|
border-radius: 50%;
|
|
border: 3px solid #ccc;
|
|
border-top-color: #1e986c;
|
|
z-index: 1;
|
|
animation: spinner 0.6s linear infinite;
|
|
}
|
|
|
|
@keyframes spinner {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|