mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery Mobile: Orientation</title>
|
|
<link rel="stylesheet" href="../../css/themes/default/jquery.mobile.css" />
|
|
<link rel="stylesheet" href="../../docs/_assets/css/jqm-docs.css" />
|
|
<style>
|
|
|
|
#orientationText {
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
margin: 1em;
|
|
}
|
|
|
|
</style>
|
|
<script src="../../js/jquery.js"></script>
|
|
<script data-main="../../js/jquery.mobile" src="../../external/requirejs/require.js"></script>
|
|
<script>
|
|
|
|
$( document ).one( "pageinit", function() {
|
|
function updateOrientation()
|
|
{
|
|
$( "#orientationText" ).text( $.event.special.orientationchange.orientation() );
|
|
}
|
|
|
|
updateOrientation();
|
|
$( window ).bind( $.support.orientation ? "orientationchange" : "resize", updateOrientation);
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div data-role="page">
|
|
<div data-role="header"><h1>Orientation Test</h1></div>
|
|
<div data-role="content">
|
|
<p>The current device orientation is displayed below. It should *ALWAYS* be correct!</p>
|
|
<div id="orientationText">Orientation Not Supported!</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|