- Foundation 教程
- Foundation - 首頁
- Foundation - 概述
- Foundation - 安裝
- Foundation - Starter Projects
- Foundation - Kitchen Sink
- Foundation General
- Foundation - 全域性樣式
- Foundation - Sass
- Foundation - JavaScript
- Foundation - JavaScript 實用程式
- Foundation - 媒體查詢
- Foundation - 網格
- Foundation - Flex Grid
- Foundation - 表單
- Foundation - 可見性類
- Foundation - 基本版式
- Foundation - 版式幫助器
- Foundation - 基本控制元件
- Foundation - 導航
- Foundation - 容器
- Foundation - 媒體
- Foundation - 外掛
- Foundation SASS
- Foundation - Sass 函式
- Foundation - Sass Mixins
- Foundation Libraries
- Foundation - Motion UI
- Foundation Useful Resources
- Foundation - 快速指南
- Foundation - 有用資源
- Foundation - 討論
Foundation - 按鈕
描述
Foundation 支援具有不同樣式的標準按鈕。將 button 類與按鈕元素結合使用。
示例
以下示例演示了在 Foundation 中使用 buttons −
<!doctype html>
<head>
<meta charset = "utf-8" />
<meta http-equiv = "x-ua-compatible" content = "ie = edge" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0" />
<title>Button</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">
</head>
<body>
<h2>Button Example</h2>
<button type = "button" class = "success button">Login</button>
<button type = "button" class = "alert button">Logout</button>
<button type = "button" class = "warning button">Registration</button>
<br>
<a class = "tiny button" href = "#">Tiny Button</a>
<a class = "small button" href = "#">Small Button</a>
<a class = "large button" href = "#">Large Button</a>
<a class = "expanded button" href = "#">Expand Button</a>
<div class = "button-group">
<a class = "button">Cricket</a>
<a class = "button">Football</a>
<a class = "button">Hockey</a>
</div>
</body>
</html>
輸出
讓我們執行以下步驟,看看上面給出的程式碼如何工作 −
將上面給出的 html 程式碼儲存為 button.html 檔案。
在瀏覽器中開啟此 HTML 檔案,將顯示如下所示的輸出。
foundation_kitchen_sink.htm
廣告