파운데이션 버튼


버튼 스타일

Foundation은 6가지 버튼 스타일을 제공합니다. .button 클래스는 패딩이 포함된 파란색 버튼을 생성합니다. 다양한 색상의 버튼 클래스는 .secondary, .success, .info, .warning 또는 입니다. . 경고:.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>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Note为什么将 a 标签的 href 设置为 # ?

当我们不希望链接点击跳转并得到 "404" 页面时,我们可以将 a 标签的 href 设置为 #。

按钮大小

我们可以使用 .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 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 类来设置圆角按钮:

实例

<!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 类来设置按钮的宽带为 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

Instance

<!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>

인스턴스 실행»온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

버튼 클래스는 <a>에서 사용할 수 있습니다. ;, <버튼> 또는 <input> 요소: 🎜🎜🎜Instance🎜🎜rrreee🎜🎜🎜Run Instance»🎜🎜온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요🎜🎜
 참고태그의 href를 #으로 설정하는 이유는 무엇입니까?🎜🎜링크를 클릭하고 점프하여 "404"를 얻는 것을 원하지 않을 때 페이지에서 a 태그의 href를 #으로 설정할 수 있습니다.

🎜버튼 크기🎜🎜 .large, .small 또는 .tiny 버튼 크기를 설정하는 클래스: 🎜🎜🎜Instance🎜🎜rrreee🎜🎜🎜Run Instance»🎜🎜온라인 예제를 보려면 "인스턴스 실행" 버튼을 클릭하세요🎜🎜
🎜둥근 모서리 Button🎜🎜 둥근 버튼을 설정하려면 .radius.round 클래스를 사용할 수 있습니다. 🎜🎜🎜Example🎜🎜rrreee🎜🎜🎜실행 예»🎜🎜"실행 온라인으로 볼 수 있는 예" 버튼 예🎜🎜
🎜확장 버튼🎜🎜 .expand 클래스를 사용하여 버튼의 대역폭을 100%로 설정할 수 있습니다:🎜🎜🎜Example🎜🎜rrreee 🎜🎜🎜인스턴스 실행»🎜🎜"인스턴스 실행" 버튼을 클릭하여 온라인 인스턴스를 확인하세요. 🎜🎜
🎜Disable 버튼🎜🎜 .disabled 클래스를 사용하여 버튼을 다음으로 설정할 수 있습니다. 클릭할 수 없음: 🎜🎜🎜Instance🎜🎜rrreee🎜🎜🎜인스턴스 실행»🎜 🎜온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요🎜🎜