尽管标题几乎相同,但我的问题与防止 iOS Safari 中的方向更改不重复(我更改了答案以制作下面的代码)
我写了下面的代码,所以如果用户旋转 iPad/iPhone/iPod,我会旋转内容,这样他就必须旋转设备才能正常查看内容。
if(window.orientation==90)
{
document.getElementById("orient").style.webkitTransform="rotate("+window.orientation+"deg)";
document.getElementById("orient").style.webkitTransformOrigin="0px 0px";
document.getElementById("orient").style.top=screen.height+"px";
}
当我旋转我的设备时,内容消失了。有人可以帮我完成这项工作吗?