0
雖然標題幾乎是一樣的,我的問題是不是Prevent orientation change in 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";
}
當我旋轉我的設備時,內容消失。 有人可以幫我做這個工作嗎?
它從風景到肖像而不是從肖像到風景 – user1365010