微信小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20 rader
446 B

  1. /* component/iconLoading/iconLoading.wxss */
  2. .global-loading {
  3. z-index: 999999;
  4. position: fixed;
  5. top: 0%;
  6. left: 0%;
  7. width: 100%;
  8. height: 100%;
  9. background-color: rgba(255, 255, 255, 0.5);
  10. }
  11. .global-loading .img{
  12. position: absolute;
  13. top: 50%;
  14. left: 50%;
  15. width: 180rpx;
  16. height: 180rpx;
  17. -webkit-transform: translate(-90rpx, -90rpx);
  18. transform: translate(-90rpx, -90rpx);
  19. z-index: 9999999;
  20. }