最新的Web开发教程
 

jQuery orientationchange Event

<jQuery Mobile的活动

提醒一些文本当用户旋转移动设备:

$(window).on("orientationchange",function(){
  alert("The orientation has changed!");
});
试一试»

定义和用法

当用户垂直或水平旋转移动设备被触发orientationChange事件。

注意 :要看到orientationChange事件的影响,用户必须使用移动设备或移动模拟器。


句法

$(window).on("orientationchange",function(event){...})

参数 描述
function(event) 需要。 指定当orientationChange事件发生时运行的功能。

该函数有一个可选的事件对象,其中包含一个方位属性等于或者"portrait""landscape"

  • Portrait =装置处于垂直位置保持
  • Landscape =装置在水平位置保持

试一试 - 示例

事件对象
使用event.orientation返回所述移动设备的方位。

窗口对象
使用window.orientation属性设置纵向和横向视图之间不同的风格。


<jQuery Mobile的活动