spin.less 824 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .wait-loading {
  2. width: 100vw;
  3. height: 100vh;
  4. position: relative;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .mask {
  10. position: relative;
  11. width: 120rpx;
  12. height: 120rpx;
  13. margin-bottom: 100rpx;
  14. image {
  15. position: absolute;
  16. bottom: 0;
  17. }
  18. .front {
  19. position: absolute;
  20. bottom: 0;
  21. overflow: hidden;
  22. height: 100%;
  23. width: 120rpx;
  24. image {
  25. height: 120rpx;
  26. }
  27. }
  28. .stitle {
  29. position: absolute;
  30. font-size: 28rpx;
  31. bottom: -36rpx;
  32. left: 0;
  33. right: 0;
  34. text-align: center;
  35. color: #333;
  36. margin-left: -6rpx;
  37. }
  38. }
  39. .slidein {
  40. animation: slideout 3s infinite;
  41. }
  42. .complete {
  43. animation: none !important;
  44. }
  45. @keyframes slideout {
  46. 0% {
  47. height: 0%;
  48. }
  49. 50% {
  50. height: 70%;
  51. }
  52. 100% {
  53. height: 100%;
  54. }
  55. }