123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- .main-view{
- width:100vw;
- height:100vh;
- overflow: hidden;
- position: relative;
- }
- canvas { z-index: 10;}
- .mapDiv{
- position: relative;
- background-color: #fff;
- font-size: 0px;
- }
- page {
- -webkit-user-select: none;
- user-select: none;
- width: 100%;
- height:100vh;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- /* 生成截屏的画布对象 */
- #canvas {
- width: 100vw;
- z-index: -1;
- left:0px;
- }
- .canvas-view{
- position:relative;
- }
- .lable-view{
- position:absolute;
- width:100vw;
- }
- .voice-btn{
- position: absolute;
- width: 72px;
- height: 72px;
- background: rgba(0, 0, 0, 0.5);
- left: 20px;
- top: 650px;
- border-radius: 50%;
- z-index: 99;
- }
- .slide-mask{
- position: absolute;
- right: 0px;
- top: 0px;
- width: 126px;
- height: 750px;
- background: linear-gradient(90.13deg, #00000000 0%, #00000080 100%);
- z-index: 9;
- }
- .slide-view{
- position: absolute;
- right: 10px;
- top: 80px;
- width: 72px;
- height: calc(750px - 60px - 60px);
- z-index: 10;
- .slide-tips{
- font-family: "Verdana Bold";
- font-weight: 700;
- font-size: 24px;
- color: #fff;
- text-align: center;
- margin-bottom: 20px;
- }
- .slide-word{
- font-family: "Verdana";
- font-weight: 400;
- font-size: 24px;
- text-align: center;
- color: #b9ff98;
- }
- .rangeview{
- right: 0px;
- height: 472px;
- margin-top: 10px;
- margin-bottom: 10px;
- }
- }
- // /deep/.el-slider.is-vertical .el-slider__button-wrapper{
- // top: 50%;
- // left: 50%;
- // transform: translate(-50%,-50%);
- // }
- /deep/.el-slider__button-wrapper{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- /deep/.el-slider__bar{
- background-color: #B9FF98;
- }
- /deep/.el-slider__button{
- border: 2px solid #B9FF98;
- }
- /deep/.el-slider.is-vertical .el-slider__bar{
- width: 8px;
- border-radius: 0 0 4px 4px;
- }
- /deep/.el-slider.is-vertical .el-slider__runway{
- width: 8px;
- background-color: rgba(255, 255, 255, 0.5);
- }
- .guide-mask {
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.3);
- z-index: 90;
- position: fixed;
- margin: auto;
- pointer-events: none;
- transition: opacity 0.5s ease-out;
- }
- .guide-mask>img {
- width: 280px;
- height: 406px;
- bottom: 100px;
- right: 0;
- margin: auto;
- position: fixed;
- left: 0;
- }
- .guide-mask-hide {
- opacity: 0;
- pointer-events: none;
- }
- .music-view{
- position: absolute;
- left: 42px;
- top: 38px;
- font-family: "Verdana";
- font-weight: 400;
- font-size: 24px;
- color: #fff;
- z-index: 9;
- .icon-yinle{
- width: 32px;
- height: 38.5px;
- color: #fff;
- margin-right: 20px;
- }
- }
|