暂无 |

78.屏幕旋转的事件和样式事件

A
B
C
D
答案:
window.orientation,取值:正负90表示横屏模式、0和180表现为竖屏模式;

window.onorientationchange = function(){

            switch(window.orientation){

                case -90:

                case 90:

                alert("横屏:" + window.orientation);

                case 0:

                case 180:

                alert("竖屏:" + window.orientation);

                break;

            }

}

样式

//竖屏时使用的样式

@media all and (orientation:portrait) {

    .css{}

}



//横屏时使用的样式

@media all and (orientation:landscape) {

    .css{}

}
解释:
css兼容

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论