index.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .wux-loading {
  2. position: fixed;
  3. z-index: 5000;
  4. top: 50%;
  5. left: 50%;
  6. background: rgba(40,40,40,.75);
  7. font-size: 28rpx;
  8. line-height: 1.5;
  9. text-align: center;
  10. border-radius: 8rpx;
  11. color: #fff;
  12. transform: translate3d(-50%,-50%,0)
  13. }
  14. .wux-loading__content {
  15. min-width: 236rpx;
  16. padding: 18rpx 30rpx;
  17. box-sizing: border-box
  18. }
  19. .wux-loading__content--has-icon {
  20. padding: 30rpx
  21. }
  22. .wux-loading__content--has-icon .wux-loading__text {
  23. margin-top: 12rpx
  24. }
  25. .wux-loading__icon {
  26. margin: 0;
  27. display: block
  28. }
  29. .wux-loading__icon--loading {
  30. display: inline-block!important;
  31. vertical-align: middle;
  32. animation: loading 1s steps(12,end) infinite;
  33. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h100v100H0z%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23E9E9E9%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22translate(0%20-30)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23989697%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(30%20105.98%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%239B999A%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(60%2075.98%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23A3A1A2%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(90%2065%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23ABA9AA%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(120%2058.66%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23B2B2B2%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(150%2054.02%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23BAB8B9%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(180%2050%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23C2C0C1%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(-150%2045.98%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23CBCBCB%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(-120%2041.34%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23D2D2D2%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(-90%2035%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23DADADA%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(-60%2024.02%2065)%22%2F%3E%3Crect%20width%3D%227%22%20height%3D%2220%22%20x%3D%2246.5%22%20y%3D%2240%22%20fill%3D%22%23E2E2E2%22%20rx%3D%225%22%20ry%3D%225%22%20transform%3D%22rotate(-30%20-5.98%2065)%22%2F%3E%3C%2Fsvg%3E");
  34. background-repeat: no-repeat;
  35. background-size: 100%;
  36. margin: 10rpx 0 0!important;
  37. width: 76rpx;
  38. height: 76rpx;
  39. vertical-align: baseline
  40. }
  41. @keyframes loading {
  42. 0% {
  43. transform: rotate3d(0,0,1,0deg)
  44. }
  45. 100% {
  46. transform: rotate3d(0,0,1,360deg)
  47. }
  48. }