|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /* pages/rotaryDraw/rotaryDraw.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 120rpx);
- overflow: auto;
- overflow-x: hidden;
- position: relative;
- }
- .pageBg{
- width: 750rpx;
- height: 1354rpx;
- }
- .gameFrame{
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- top:345rpx;
- width:662rpx;
- height:662rpx;
- z-index: 9;
- }
- .gameGroup{
- position: relative;
- width: 100%;
- height: 100%;
- }
- .gameDial{
- width: 100%;
- height: 100%;
- }
- .gamePointer{
- position: absolute;
- top: 200rpx;
- left: 50%;
- transform: translateX(-50%);
- width: 119rpx;
- height: 181rpx;
- }
- .gamePointer2{
- position: absolute;
- top: 270rpx;
- left: 270rpx;
- width: 119rpx;
- height: 120rpx;
- }
- .recordFrame{
- position: absolute;
- top: 0;
- left: 0;
- width: 750rpx;
- height: 1354rpx;
- }
- .recordGroup{
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translateX(-50%);
- width: 530rpx;
- height: 152rpx;
- overflow: hidden;
- }
- .recordText{
- position: absolute;
- left: 0;
- top: 152rpx;
- text-align: center;
- font-size: 24rpx;
- width: 100%;
- height: 40rpx;
- line-height: 40rpx;
- color: white;
- }
- .ruleMask{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: calc(100vh - 120rpx);
- background-color: rgba( 000, 000, 000, 0.6);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 99;
- }
- .ruleGroup{
- position: relative;
- width: 641rpx;
- height: 995rpx;
- }
- .closeRule{
- position: absolute;
- top: -27rpx;
- right: -28rpx;
- width: 38rpx;
- height: 37rpx;
- }
- .getNow{
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- top: 435rpx;
- width: 366rpx;
- height: 56rpx;
- }
- .gameDialAni{
- animation:rotateAni 3s linear infinite;
- }
- @keyframes rotateAni
- {
- 0% {rotate:0;}
- 100% {rotate:360deg;}
- 100% {rotate:0;}
- }
|