wait.less 698 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* components/wait/wait.wxss */
  2. .page-wait {
  3. display: flex;
  4. width: 100vw;
  5. height: 100vh;
  6. position: absolute;
  7. z-index: 99999;
  8. top: 0;
  9. left: 0;
  10. background: #ffffff00;
  11. pointer-events: none;
  12. &.active {
  13. background: #ffffff93;
  14. pointer-events: all;
  15. }
  16. .place {
  17. position: fixed;
  18. top: 35%;
  19. left: 50%;
  20. margin-left: -26rpx;
  21. }
  22. .loading {
  23. width: 40rpx;
  24. height: 40rpx;
  25. border: 2px solid #000;
  26. border-top-color: transparent;
  27. border-radius: 100%;
  28. animation: circle infinite 0.75s linear;
  29. }
  30. // 转转转动画
  31. @keyframes circle {
  32. 0% {
  33. transform: rotate(0);
  34. }
  35. 100% {
  36. transform: rotate(360deg);
  37. }
  38. }
  39. }