jQuery Mobile 方向改變事件
jQuery Mobile 方向改變(orientationchange)事件
當使用者垂直或水平旋轉移動設備時,觸發方向改變(orientationchange)事件。
#
如需使用方向改變(orientationchange)事件,請附加它到 window 物件:
$(window).on("orientationchange",function(){ alert("方向有改变!"); });
回呼函數可有一個參數,event 對象,返回移動設備的方向:"縱向"(設備保持在垂直位置)或"橫向"(設備保持在水平位置):
實例
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script> <script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <script> $(document).on("pagecreate",function(event){ $(window).on("orientationchange",function(event){ alert("方向改变为: " + event.orientation); }); }); </script> </head> <body> <div data-role="page"> <div data-role="header"> <h1>orientationchange 事件</h1> </div> <div data-role="main" class="ui-content"> <p>请试着旋转您的设备!</p> <p><b>注释:</b>您必须使用移动设备或者移动模拟器来查看该事件的效果。</p> </div> <div data-role="footer"> <h1>页脚文本</h1> </div> </div> </body> </html>
執行實例 »
點擊 "運行實例" 按鈕查看線上實例
由於方向改變(orientationchange)事件綁定到 window 對象,我們可以使用 window.orientation 屬性來設定不同的樣式,以便區分縱向和橫向的視圖:
實例
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script> <script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <script> $(document).on("pagecreate",function(event){ $(window).on("orientationchange",function(){ if(window.orientation == 0) { $("p").text("方向已经变为 portrait!").css({"background-color":"yellow","font-size":"300%"}); } else { $("p").text("方向已经变为 landscape!").css({"background-color":"pink","font-size":"200%"}); } }); }); </script> </head> <body> <div data-role="page"> <div data-role="header"> <h1> orientationchange 事件</h1> </div> <div data-role="main" class="ui-content"> <p>请试着旋转您的设备!</p> <p><b>注释:</b>您必须使用移动设备或者移动模拟器来查看该事件的效果。</p> </div> <div data-role="footer"> <h1>页脚文本</h1> </div> </div> </body> </html>
執行實例 »
點擊 "運行實例" 按鈕查看線上實例
window.orientation 屬性針對縱向視圖傳回 0,並針對橫向視圖傳回 90 或 -90。 |
#