auto-screen-view
Version:
大屏适配
17 lines (16 loc) • 337 B
CSS
.auto-screen-view-container {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
padding: 0;
border: none;
z-index: 99999999;
}
.auto-screen-view-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(var(--auto-screen-scale, 1)) ;
}