jquery-mobile/_dialog.html

27 lines
No EOL
837 B
HTML

<?php /*gzip page*/ ob_start("ob_gzhandler"); ?>
<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Framework - Dialog Example</title>
<link rel="stylesheet" type="text/css" href="css/all" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div class="ui-page ui-body-a">
<div class="ui-header" data-theme="d">
<h1>Dialog Example</h1>
<a href="index.html" class="ui-back" data-icon="arrow-l">Home</a>
</div>
<div class="ui-content ui-body">
<h1>Demo description</h1>
<p>This is a regular page, styled as a dialog! To create a dialog, just link to a normal page and include a transition and <code>data-behavior="dialog"</code> attribute.</p>
<a href="#" data-role="button" data-theme="a">Sounds good</a>
<a href="#" data-role="button">meh..</a>
</div>
</div>
</body>
</html>