欢迎访问服务器技术网-www.fuwuqijishu.com

jQuery Mobile 方向改变事件

jQuery Mobile fuwuqijishu 2年前 (2022-06-17) 187次浏览 0个评论 扫描二维码
文章目录[隐藏]

jQuery Mobile 方向改变事件


jQuery Mobile 方向改变(orientationchange)事件

当用户垂直或水平旋转移动设备时,触发方向改变(orientationchange)事件。

$(document).ready(function(){
$(“#btn”).click(function(){
$(“.iphone”).css({
‘-webkit-transform’:’rotate(90deg)’,
‘-moz-transform’:’rotate(90deg)’,
‘-o-transform’:’rotate(90deg)’,
‘-ms-transform’:’rotate(90deg)’
});
});
$(“#btn2”).click(function(){
$(“.iphone”).css({
‘-webkit-transform’:’rotate(0deg)’,
‘-moz-transform’:’rotate(0deg)’,
‘-o-transform’:’rotate(0deg)’,
‘-ms-transform’:’rotate(0deg)’
});
});
});


jQuery Mobile 方向改变事件

如需使用方向改变(orientationchange)事件,请附加它到 window 对象:

$(window).on("orientationchange",function(){
    alert("方向有改变!");
});

回调函数可有一个参数,event 对象,返回移动设备的方向:”纵向”(设备保持在垂直位置)或”横向”(设备保持在水平位置):

实例

$(window).on(“orientationchange”,function(event){

alert(“方向是: ” + event.orientation);
});

由于方向改变(orientationchange)事件绑定到 window 对象,我们可以使用 window.orientation 属性来设置不同的样式,以便区分纵向和横向的视图:

实例

$(window).on(“orientationchange”,function(){
if(window.orientation
== 0) // Portrait
{
$(“p”).css({“background-color”:”yellow”,”font-size”:”300%”});

}
else // Landscape
{
$(“p”).css({“background-color”:”pink”,”font-size”:”200%”});

}
});

jQuery Mobile 方向改变事件 window.orientation 属性针对纵向视图返回 0,针对横向视图返回 90 或 -90。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2117.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900