Foundation Chinese Manual
/ Foundation 按鈕
Foundation 按鈕
按鈕樣式
Foundation 提供了 6 種按鈕樣式。 .button
類創(chuàng)建了一個藍色的按鈕并附有內(nèi)邊距。不同顏色按鈕類為: .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 標簽的 href 設(shè)置為 # ? 當我們不希望鏈接點擊跳轉(zhuǎn)并得到 "404" 頁面時,我們可以將 a 標簽的 href 設(shè)置為 #。 |
---|
按鈕大小
我們可以使用 .large
, .small
或 .tiny
類來設(shè)置按鈕大小:
實例
<!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>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例
圓角按鈕
可以使用 .radius
和 .round
類來設(shè)置圓角按鈕:
實例
<!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>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例
延展按鈕
可以使用 .expand
類來設(shè)置按鈕的寬帶為 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 type="button" class="button expand">Expanded Button</button> </div> </body> </html>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例
禁用按鈕
可以使用 .disabled
類來設(shè)置按鈕不可點擊:
實例
<!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>
運行實例 ?
點擊 "運行實例" 按鈕查看在線實例