代码描述:js判断 屏幕旋转代码。js判断屏幕是旋转代码实例
屏幕旋转这个效果大家都很熟悉了,根据不同的方位可能要应用不同的代码。 下面就通过一段代码介绍一下如何使用javascript实现判断屏幕旋转效果。 代码实例如下:
<script> function orientationChange() { switch (window.orientation) { case 0: alert("肖像模式 0,screen-width: " + screen.width + "; screen-height:" + screen.height); break; case -90: alert("左旋 -90,screen-width: " + screen.width + "; screen-height:" + screen.height); break; case 90: alert("右旋 90,screen-width: " + screen.width + "; screen-height:" + screen.height); break; case 180: alert("风景模式 180,screen-width: " + screen.width + "; screen-height:" + screen.height); break; }; }; </script>
下面是事件处理函数注册:
<script> addEventListener('load', function () { orientationChange(); window.onorientationchange = orientationChange; }); </script>
请绑定手机号,在继续操作
注意:只有绑定手机以后,才可使用网站全部功能