@media all and (orientation: portrait) {
body div {background: red;}
}
@media all and (orientation: landscape) {
body div {background: blue; }
}


function rotate (){
if(document.documentElement.clientWidth > document.documentElement.clientHeight){
window.location.reload()
break
}else{
window.location.reload()
break
}
}
window.onload = rotate;
window.onresize = rotate;

posted on 2020-02-25 13:55  Charonっ  阅读(189)  评论(0编辑  收藏  举报