jquery-mobile/_dialog.html

27 lines
900 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>jQuery Mobile Framework - Dialog Example</title>
<link rel="stylesheet" media="only all" href="css/all" />
<script type="text/javascript" src="js/all"></script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-theme="d">
<h1>Dialog Example</h1>
</div>
2010-10-09 12:57:57 +00:00
<div data-role="content" data-theme="c" class=" ui-body">
<h1>Demo description</h1>
2010-09-18 16:03:24 +00:00
<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-rel="dialog"</code> attribute.</p>
2010-09-17 21:15:06 +00:00
<p>Try loading a taller page to see how the headers and footers work: <a href="_fixed.html" data-transition="pop" data-rel="dialog">Fixed Headers/Footers</a></p>
<a href="#" data-role="button" data-theme="a">Sounds good</a>
<a href="#" data-role="button">meh..</a>
</div>
</div>
</body>
</html>