123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .main-view{
- overflow: hidden;
- width: 100vw;
- height:100vh;
- }
- #mapDiv{
- overflow: hidden;
- width: 100vw;
- height:100vh;
- }
- canvas {
- -webkit-user-select: none;
- user-select: none;
- width: 100%;
- height:100vh;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- .lable-view{
- position:absolute;
- width:100vw;
- }
- .word-view{
- position: absolute;
- left: 0;
- top: 0;
- font-family: "Verdana";
- font-weight: 400;
- color: #1d1d1d;
- user-select: none; /* don't let the text get selected */
- z-index: 12;
- font-size:26px;
- /* pointer-events:none; */
- line-height: 40px;
- /* width: 90px; */
- height: 40px;
- padding:0px 10px;
- border-radius: 20px;
- background: #fff;
- text-align: center;
- }
- .floor-view{
- position: absolute;
- left:30px;
- bottom:60px;
- width: 72px;
- border-radius: 12px;
- background: rgba(0, 0, 0, 0.4);
- overflow: hidden;
- z-index: 11;
- font-size: 28px;
- }
- .floor-item{
- height: 60px;
- color: #fff;
- }
- .floor-item.active{
- color: #faa040;
- background: #fff;
- }
|