mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Edited the PHP combiner and .htaccess logic to accommodate this change, as well as allowing manifest files to use a "../" when referencing files, which will be handy when adding themes that don't include structural files yet. Modified all HTML files to point to /themes/default for their theme.
33 lines
No EOL
1.2 KiB
HTML
Executable file
33 lines
No EOL
1.2 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery Mobile Framework - Fixed toolbars variation</title>
|
|
<link rel="stylesheet" href="../../themes/default" />
|
|
<script type="text/javascript" src="../../js/all"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page" data-fullscreen="true">
|
|
|
|
<div data-role="header">
|
|
<h1>Fullscreen fixed toolbars</h1>
|
|
</div>
|
|
|
|
<div data-role="content">
|
|
<img src="images/photo-run.jpeg" width="640" height="480" alt="Photo Run">
|
|
|
|
<p class="ui-body">This is a demonstrates the "fullscreen" toolbar mode. It works just like the default <a href="bars-fixed.html">"fixed" toolbar mode</a> except that the toolbars aren't shown at the top and bottom of the page and only appear when the page is clicked. This is useful for immersive apps like photo or video viewers where you want the content to full when whole screen and toolbars can be summoned to appear by tapping the screen. Keep in mind that the toolbars in this mode will sit <strong>over</strong> page content so not all content will be accessible with the toolbars open, just like in this situation.</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div data-role="footer">
|
|
<h1>Fixed Footer</h1>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html> |