基礎ボタン
ボタン スタイル
Foundation は 6 つのボタン スタイルを提供します。 .button
クラスは、パディング付きの青いボタンを作成します。さまざまな色のボタン クラスは次のとおりです: .secondary
、.success
、.info
、.warning
、または .alert
:.button
类创建了一个蓝色的按钮并附有内边距。不同颜色按钮类为: .secondary
, .success
, .info
, .warning
或 .alert
:
实例
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div style="padding:20px;"> <h2>按钮样式</h2> <button type="button" class="button">Default</button> <button type="button" class="button secondary">Secondary</button> <button type="button" class="button success">Success</button> <button type="button" class="button info">Info</button> <button type="button" class="button warning">Warning</button> <button type="button" class="button alert">Alert</button> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
按钮类可以使用在 <a>
, <button>
<input>
<!DOCTYPE html>
<html>
<head>
<title>Foundation 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css">
<script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script>
<script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script>
<script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script>
</head>
<body>
<div style="padding:20px;">
<h2>按钮元素</h2>
<a href="#" class="button info" role="button">链接按钮</a>
<button type="button" class="button info">按钮</button>
<input type="button" class="button info" value="Input 按钮">
<input type="submit" class="button info" value="Submit 按钮">
</div>
</body>
</html>
インスタンスの実行»「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示しますボタンクラスは
<a>で使用できます;
、<ボタン>
、または
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div style="padding:20px;"> <h2>按钮大小</h2> <button type="button" class="button large">Large</button> <button type="button" class="button">Default</button> <button type="button" class="button small">Small</button> <button type="button" class="button tiny">Tiny</button> </div> </body> </html> | インスタンスの実行» 「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します |
---|
.large
, .small
或 .tiny
类来设置按钮大小:
实例
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div style="padding:20px;"> <h2>圆角按钮</h2> <button type="button" class="button">Default Button</button> <button type="button" class="button radius">Radius Button</button> <button type="button" class="button round">Round Button</button> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
圆角按钮
可以使用 .radius
和 .round
类来设置圆角按钮:
实例
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div style="padding:20px;"> <h2>延展按钮</h2> <button type="button" class="button">Default</button> <button type="button" class="button expand">Expanded Button</button> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
延展按钮
可以使用 .expand
类来设置按钮的宽带为 100%:
实例
<!DOCTYPE html> <html> <head> <title>Foundation 实例</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://static.php.cn/assets/foundation-5.5.3/foundation.min.css"> <script src="http://static.php.cn/assets/jquery/2.0.3/jquery.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/foundation.min.js"></script> <script src="http://static.php.cn/assets/foundation-5.5.3/js/vendor/modernizr.js"></script> </head> <body> <div style="padding:20px;"> <h2>禁用按钮</h2> <button type="button" class="button">Default Button</button> <button type="button" class="button disabled">Disabled Button</button> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
禁用按钮
可以使用 .disabled
a タグの href を # に設定する理由?
リンクをクリックして「404」を取得したくない場合 ページでは、a タグの href を # に設定できます。
ボタンのサイズ
.large
、.small
、または .tiny
クラスを使用してボタンのサイズを設定できます。 .radius
と < を使用できますcode>.round code> クラスを使用して、丸いボタンを設定します。 .expand code> クラスを使用して、ボタンの帯域幅を 100% に設定できます: 🎜🎜🎜Instance🎜🎜rrreee🎜🎜🎜Run Instance»🎜🎜 [Run Instance] ボタンをクリックしてオンラインで表示します。インスタンス🎜🎜🎜🎜ボタンを無効にするには、.disabled
クラスを使用してボタンをクリックできないように設定できます: 🎜🎜🎜インスタンス🎜🎜rrreee🎜🎜🎜インスタンスを実行»🎜🎜「」をクリックします「インスタンスを実行」ボタンをクリックしてオンラインインスタンスを表示します🎜🎜