mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-23 01:10:25 +00:00
43 lines
No EOL
1.1 KiB
HTML
Executable file
43 lines
No EOL
1.1 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery Mobile Docs - Buttons</title>
|
|
<link rel="stylesheet" media="only all" href="css/all" />
|
|
<script type="text/javascript" src="js/all"></script>
|
|
<script type="text/javascript" src="docs/docs.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page">
|
|
|
|
<div data-role="header">
|
|
<h1>Inline buttons</h1>
|
|
</div><!-- /header -->
|
|
|
|
<div data-role="content">
|
|
<div class="ui-body ui-body-c">
|
|
|
|
|
|
<p><strong>Inline</strong> buttons (default)</p>
|
|
<div data-inline="true" >
|
|
<a href="index.html" data-role="button">Cancel</a>
|
|
<a href="index.html" data-role="button" data-theme="b">Save</a>
|
|
</div>
|
|
|
|
<p><strong>Inline toolbar</strong> buttons</p>
|
|
|
|
<div data-role="footer" data-position="inline">
|
|
<div data-inline="true">
|
|
<a href="index.html" data-role="button" data-icon="delete">Remove</a>
|
|
<a href="index.html" data-role="button" data-icon="plus">Add</a>
|
|
<a href="index.html" data-role="button" data-icon="arrow-u">Move</a>
|
|
</div>
|
|
</div>
|
|
|
|
</div><!-- /ui-body wrapper -->
|
|
|
|
</div><!-- /content -->
|
|
</div><!-- /page -->
|
|
|
|
</body>
|
|
</html> |