shadow.css 343 B

1234567891011121314151617
  1. body::after {
  2. position: fixed;
  3. content: '';
  4. left: -1000px;
  5. top: -1000px;
  6. animation: shadow-preload 0.1s;
  7. animation-delay: 3s;
  8. }
  9. @keyframes shadow-preload {
  10. 0% {
  11. background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  12. }
  13. 100% {
  14. background-image: url(https://cdn.dcloud.net.cn/img/shadow-grey.png);
  15. }
  16. }