uni-ticket-system/node_modules/@dcloudio/uni-h5/style/framework/shadow.css
2023-12-05 10:11:10 +08:00

18 lines
343 B
CSS

body::after {
position: fixed;
content: '';
left: -1000px;
top: -1000px;
animation: shadow-preload 0.1s;
animation-delay: 3s;
}
@keyframes shadow-preload {
0% {
background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
}
100% {
background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
}
}