タイトルはほぼ同じですが、私の質問は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";
}
デバイスを回転させると、コンテンツが消えます。誰かがこれを機能させるのを手伝ってくれますか?