jquery-mobile/docs/buttons/buttons-grouped.html
2010-10-11 14:25:08 -04:00

53 lines
No EOL
1.6 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>Grouped buttons</h1>
</div><!-- /header -->
<div data-role="content">
<div class="ui-body ui-body-c">
<p><strong>Vertical</strong> grouped buttons (default)</p>
<div data-role="controlgroup" data-type="vertical" >
<a href="index.html" data-role="button">Yes</a>
<a href="index.html" data-role="button">No</a>
<a href="index.html" data-role="button">Maybe</a>
</div>
<p><strong>Horizontal</strong> grouped buttons</p>
<div data-role="controlgroup" data-type="horizontal" >
<a href="index.html" data-role="button" data-icon="arrow-u">Move up</a>
<a href="index.html" data-role="button" data-icon="arrow-d">Move down</a>
<a href="index.html" data-role="button" data-icon="delete">Remove</a>
</div>
<p><strong>Horizontal</strong> grouped buttons, icon only</p>
<div data-role="controlgroup" data-type="horizontal" >
<a href="index.html" data-role="button" data-icon="arrow-u" data-iconpos="notext">Move up</a>
<a href="index.html" data-role="button" data-icon="arrow-d" data-iconpos="notext">Move down</a>
<a href="index.html" data-role="button" data-icon="delete" data-iconpos="notext">Remove</a>
</div>
</div><!-- /ui-body wrapper -->
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>