uni-ticket-system/node_modules/@dcloudio/uni-h5/style/framework/shadow.css

18 lines
343 B
CSS
Raw Normal View History

2023-12-05 02:11:10 +00:00
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);
}
}