感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://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 data-role="footer">
<h1>页脚文本</h1>
</body>
</html>
输入 JavaScript 代码……
xxxxxxxxxx
输入 CSS 代码……