You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.1 KiB
66 lines
2.1 KiB
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>jQuery UI Button - Icons</title>
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
<script src="../bootstrap.js">
|
|
$( ".widget button" )
|
|
.eq( 0 ).button()
|
|
.end().eq( 1 ).button( {
|
|
icon: "ui-icon-gear",
|
|
showLabel: false
|
|
} ).end().eq( 2 ).button( {
|
|
icon: "ui-icon-gear"
|
|
} ).end().eq( 3 ).button( {
|
|
icon: "ui-icon-gear",
|
|
iconPosition: "end"
|
|
} ).end().eq( 4 ).button( {
|
|
icon: "ui-icon-gear",
|
|
iconPosition: "top"
|
|
} ).end().eq( 5 ).button( {
|
|
icon: "ui-icon-gear",
|
|
iconPosition: "bottom"
|
|
} );
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="widget">
|
|
<h1>Widget</h1>
|
|
<button>Button with only text</button>
|
|
<button>Button with icon only</button>
|
|
<button>Button with icon on the left</button>
|
|
<button>Button with icon on the right</button>
|
|
<button>Button with icon on the top</button>
|
|
<button>Button with icon on the bottom</button>
|
|
</div>
|
|
<div class="css">
|
|
<h1>CSS</h1>
|
|
<button class="ui-button ui-widget ui-corner-all">
|
|
Button with only text
|
|
</button>
|
|
<button class="ui-button ui-widget ui-corner-all ui-button-icon-only" title="Button with icon only">
|
|
<span class="ui-icon ui-icon-gear"></span> Button with icon only
|
|
</button>
|
|
<button class="ui-button ui-widget ui-corner-all">
|
|
<span class="ui-icon ui-icon-gear"></span> Button with icon on the left
|
|
</button>
|
|
<button class="ui-button ui-widget ui-corner-all">
|
|
Button with icon on the right <span class="ui-icon ui-icon-gear"></span>
|
|
</button>
|
|
<button class="ui-button ui-widget ui-corner-all">
|
|
<span class="ui-icon ui-icon-gear ui-widget-icon-block"></span> Button with icon on the top
|
|
</button>
|
|
<button class="ui-button ui-widget ui-corner-all">
|
|
Button with icon on the bottom <span class="ui-icon ui-icon-gear ui-widget-icon-block"></span>
|
|
</button>
|
|
</div>
|
|
<div class="demo-description">
|
|
<p>Some buttons with various combinations of text and icons.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|