123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- canvas { width:100vw; height:100vh;z-index: 10; }
- page {
- -webkit-user-select: none;
- user-select: none;
- width: 100%;
- height:100vh;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- #canvas_webgl{
- /* background: url(resources/images/daikanyama.jpg) no-repeat center center; */
- /* background:#6d0909;
- background-size: cover; */
- }
- .lable-view{
- position:absolute;
- width:100vw;
- }
- .word-view{
- position: absolute; /* let us position them inside the container
- left: 0; /* make their default position the top left of the container */
- top: 0;
- /* cursor: pointer; */
- font-family: "Verdana";
- font-weight: 400;
- color: #1d1d1d;
- user-select: none; /* don't let the text get selected */
- z-index: 12;
- font-size:26rpx;
- /* pointer-events:none; */
- line-height: 40rpx;
- /* width: 90rpx; */
- height: 40rpx;
- padding:0rpx 10rpx;
- border-radius: 20rpx;
- background: #fff;
- text-align: center;
- }
- .floor-view{
- position: absolute;
- left:30rpx;
- bottom:60rpx;
- width: 72rpx;
- border-radius: 12rpx;
- background: rgba(0, 0, 0, 0.4);
- overflow: hidden;
- z-index: 11;
- }
- .floor-item{
- height: 60rpx;
- color: #fff;
- }
- .floor-item.active{
- color: #faa040;
- background: #fff;
- }
|