东风启辰小程序端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

118 lines
1.8KB

  1. /* pages/rotaryDraw/rotaryDraw.wxss */
  2. image{
  3. display: block;
  4. }
  5. view{
  6. -webkit-overflow-scrolling: touch;
  7. }
  8. .main{
  9. height: calc(100vh - 120rpx);
  10. overflow: auto;
  11. overflow-x: hidden;
  12. position: relative;
  13. }
  14. .pageBg{
  15. width: 750rpx;
  16. height: 1354rpx;
  17. }
  18. .gameFrame{
  19. position: absolute;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. top:345rpx;
  23. width:661rpx;
  24. height:661rpx;
  25. z-index: 9;
  26. }
  27. .gameGroup{
  28. position: relative;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .gameDial{
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .gamePointer{
  37. position: absolute;
  38. top: 207rpx;
  39. left: 50%;
  40. transform: translateX(-50%);
  41. width: 119rpx;
  42. height: 181rpx;
  43. }
  44. .gamePointer2{
  45. position: absolute;
  46. top: 207rpx;
  47. left: 271rpx;
  48. width: 119rpx;
  49. height: 120rpx;
  50. }
  51. .recordFrame{
  52. position: absolute;
  53. top: 0;
  54. left: 0;
  55. width: 750rpx;
  56. height: 1354rpx;
  57. }
  58. .recordGroup{
  59. position: absolute;
  60. left: 50%;
  61. bottom: 0;
  62. transform: translateX(-50%);
  63. width: 530rpx;
  64. height: 152rpx;
  65. overflow: hidden;
  66. }
  67. .recordText{
  68. position: absolute;
  69. left: 0;
  70. top: 152rpx;
  71. text-align: center;
  72. font-size: 24rpx;
  73. width: 100%;
  74. height: 40rpx;
  75. line-height: 40rpx;
  76. color: white;
  77. }
  78. .ruleMask{
  79. position: fixed;
  80. top: 0;
  81. left: 0;
  82. width: 100%;
  83. height: calc(100vh - 120rpx);
  84. background-color: rgba( 000, 000, 000, 0.6);
  85. display: flex;
  86. align-items: center;
  87. justify-content: center;
  88. z-index: 99;
  89. }
  90. .ruleGroup{
  91. position: relative;
  92. width: 641rpx;
  93. height: 995rpx;
  94. }
  95. .closeRule{
  96. position: absolute;
  97. top: -27rpx;
  98. right: -28rpx;
  99. width: 38rpx;
  100. height: 37rpx;
  101. }
  102. .getNow{
  103. position: absolute;
  104. left: 50%;
  105. transform: translateX(-50%);
  106. top: 435rpx;
  107. width: 366rpx;
  108. height: 56rpx;
  109. }
  110. .gameDialAni{
  111. animation:rotateAni 3s linear infinite;
  112. }
  113. @keyframes rotateAni
  114. {
  115. 0% {rotate:0;}
  116. 100% {rotate:360deg;}
  117. 100% {rotate:0;}
  118. }