You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
576 B
34 lines
576 B
3 years ago
|
|
||
|
/* 悬浮按钮 -start- */
|
||
|
.movable-area{
|
||
|
pointer-events:none;
|
||
|
z-index: 999;
|
||
|
width: 100%;
|
||
|
height: 90%;
|
||
|
position: fixed;
|
||
|
top: 60px;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
.movable-view{
|
||
|
pointer-events:auto;
|
||
|
width: 178rpx;
|
||
|
height: 178rpx;
|
||
|
transform: translateX(0rpx) translateY(0rpx) translateZ(0rpx) scale(1);
|
||
|
transform-origin: center center;
|
||
|
will-change: auto;
|
||
|
position: absolute;
|
||
|
top: 0rpx;
|
||
|
left: 0rpx;
|
||
|
}
|
||
|
.img-box {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.img-box image {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover;
|
||
|
}
|
||
|
/* 悬浮按钮 -end- */
|