mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
46 lines
688 B
Plaintext
46 lines
688 B
Plaintext
.j-vxe-reload-effect-box {
|
|
|
|
&,
|
|
.j-vxe-reload-effect-span {
|
|
display: inline;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.j-vxe-reload-effect-span {
|
|
|
|
&.layer-top {
|
|
display: inline-block;
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
z-index: 2;
|
|
background-color: white;
|
|
|
|
transform-origin: 0 0;
|
|
animation: reload-effect 1.5s forwards;
|
|
}
|
|
|
|
&.layer-bottom {
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
// 定义动画
|
|
@keyframes reload-effect {
|
|
0% {
|
|
opacity: 1;
|
|
transform: rotateX(0);
|
|
}
|
|
10% {
|
|
opacity: 1;
|
|
}
|
|
90% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
transform: rotateX(180deg);
|
|
}
|
|
}
|
|
} |