其他分享
首页 > 其他分享> > WebGL_0010:横屏,竖屏 样式切换

WebGL_0010:横屏,竖屏 样式切换

作者:互联网

1,

    /* 竖屏模式 */
    @media screen and (orientation: portrait){

        /* 主按钮 */
        .PageBut1N {
            width: 10%;
            height: 8%;
            top: 90%;
            left: 38%;
        }
        
    }

    /* 横屏模式 */
    @media screen and (orientation: landscape) {

        /* 主按钮 */
        .PageBut1N {
            width: 10%;
            height: 8%;
            top: 90%;
            left: 42%;
            /* background-color: red; */
        }
        
    }

 

标签:orientation,0010,media,WebGL,height,width,竖屏,8%,top
来源: https://www.cnblogs.com/eliteboy/p/13397445.html