方向改变时Iphone风格改变
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方向改变时Iphone风格改变相关的知识,希望对你有一定的参考价值。
Switches body class between .portrait and .landscape for, you guessed it, portrait and landscape mode on the iphone.
window.addEventListener('load', setOrientation, false); window.addEventListener('orientationchange', setOrientation, false); function setOrientation() { var orient = Math.abs(window.orientation) === 90 ? 'landscape' : 'portrait'; var cl = document.body.className; cl = cl.replace(/portrait|landscape/, orient); document.body.className = cl; }
以上是关于方向改变时Iphone风格改变的主要内容,如果未能解决你的问题,请参考以下文章
iphone - 在 iphone 的方向改变时,只旋转一个控件而不是所有其他控件
Cordova 3.5.0 中的 iPhone 屏幕方向没有改变