loading.wxss 978 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .tui-loading-init {
  2. min-width: 200rpx;
  3. min-height: 200rpx;
  4. max-width: 500rpx;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. flex-direction: column;
  9. position: fixed;
  10. top: 50%;
  11. left: 50%;
  12. transform: translate(-50%,-50%);
  13. z-index: 9999;
  14. font-size: 26rpx;
  15. color: #fff;
  16. background:rgba(0, 0, 0, .7);
  17. border-radius: 10rpx;
  18. }
  19. .tui-loading-center {
  20. width: 50rpx;
  21. height: 50rpx;
  22. border: 3px solid #fff;
  23. border-radius: 50%;
  24. margin: 0 6px;
  25. display: inline-block;
  26. vertical-align: middle;
  27. clip-path: polygon(0% 0%, 100% 0%, 100% 40%, 0% 40%);
  28. animation: rotate 1s linear infinite;
  29. margin-bottom: 36rpx;
  30. }
  31. .tui-loadmore-tips{
  32. text-align: center;
  33. padding: 0 20rpx;
  34. box-sizing: border-box;
  35. }
  36. @-webkit-keyframes rotate {
  37. from {
  38. transform: rotatez(0deg);
  39. }
  40. to {
  41. transform: rotatez(360deg);
  42. }
  43. }
  44. @keyframes rotate {
  45. from {
  46. transform: rotatez(0deg);
  47. }
  48. to {
  49. transform: rotatez(360deg);
  50. }
  51. }