08Bootstrap5按钮

08Bootstrap5按钮

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <title>菜鸟教程Bootstrap5按钮</title>
    <link rel="stylesheet" href="../css/bootstrap.min.css">
</head>
<body>
<div class="container mt-3">
    <h2>按钮样式</h2>
    <button type="button" class="btn">基本按钮</button>
    <button type="button" class="btn btn-primary">主要按钮</button>
    <button type="button" class="btn btn-secondary">次要按钮</button>
    <button type="button" class="btn btn-success">成功</button>
    <button type="button" class="btn btn-info">信息</button>
    <button type="button" class="btn btn-warning">警告</button>
    <button type="button" class="btn btn-danger">危险</button>
    <button type="button" class="btn btn-dark">黑色</button>
    <button type="button" class="btn btn-light">浅色</button>
    <button type="button" class="btn btn-link">链接</button>
</div>
<!--
按钮类可用于 <a>, <button>, 或 <input> 元素上:
-->
<div class="container mt-3">
    <h2>按钮元素</h2>
    <a href="#" class="btn btn-info" role="button">链接按钮</a>
    <button type="button" class="btn btn-info">按钮</button>
    <input type="button" class="btn btn-info" value="输入框按钮">
    <input type="submit" class="btn btn-info" value="提交按钮">
    <input type="reset" class="btn btn-info" value="重置按钮">
</div>
<!--
按钮设置边框
Bootstrap 5 也可以设置按钮多边框,鼠标移动到按钮上添加突出到效果:
(鼠标悬浮效果)
-->
<div class="container mt-3">
    <h2>按钮设置边框</h2>
    <button type="button" class="btn btn-dark btn-outline-primary">主要按钮</button>
    <button type="button" class="btn btn-outline-secondary">次要按钮</button>
    <button type="button" class="btn btn-outline-success">成功</button>
    <button type="button" class="btn btn-outline-info">信息</button>
    <button type="button" class="btn btn-outline-warning">警告</button>
    <button type="button" class="btn btn-outline-danger">危险</button>
    <button type="button" class="btn btn-outline-dark">黑色</button>
    <button type="button" class="btn btn-outline-light text-dark">浅色</button>
</div>
<!--
不同大小的按钮
Bootstrap 5 可以设置按钮的大小,
使用 .btn-lg 类设置大按钮,使用 .btn-sm 类设置小按钮:
-->
<div class="container mt-3">
    <h2>不同大小的按钮</h2>
    <button type="button" class="btn btn-primary btn-lg">大号按钮</button>
    <button type="button" class="btn btn-primary">默认按钮</button>
    <button type="button" class="btn btn-primary btn-sm">小号按钮</button>
</div>
<!--
块级按钮
通过添加 .btn-block 类可以设置块级按钮,.d-grid 类设置在父级元素中:
-->
<div class="container mt-3">
    <p>通过添加 .btn-block 类可以设置块级按钮,.d-grid 类设置在父级元素中:</p>
    <div class="d-grid">
        <button type="button" class="btn btn-primary btn-block">按钮 1</button>
    </div>
</div>
<!--
如果有多个块级按钮,你可以使用用 .gap-* 类来设置:
-->
<div class="container mt-3">
    <p>通过添加 .btn-block 类可以设置块级按钮,.d-grid 类设置在父级元素中:</p>
    <div class="d-grid gap-3">
        <button type="button" class="btn btn-primary btn-block">100% 宽度的按钮</button>
        <button type="button" class="btn btn-primary btn-block">100% 宽度的按钮</button>
        <button type="button" class="btn btn-primary btn-block">100% 宽度的按钮</button>
    </div>
</div>
<!--
激活和禁用的按钮
按钮可设置为激活或者禁止点击的状态。
.active 类可以设置按钮是可用的, disabled 属性可以设置按钮是不可点击的。
注意 <a> 元素不支持 disabled 属性,你可以通过添加 .disabled 类来禁止链接的点击。
-->
<div class="container mt-3">
    <h2>按钮状态</h2>
    <button type="button" class="btn btn-primary">主要按钮</button>
    <button type="button" class="btn btn-primary active">点击后的按钮</button>
    <button type="button" class="btn btn-primary" disabled>禁止点击的按钮</button>
    <a href="#" class="btn btn-primary disabled">禁止点击的链接</a>
</div>
<!--
加载按钮
可以设置一个正在加载的按钮。
-->
<div class="container mt-3">
    <h2>加载按钮</h2>
    <p>按钮添加正在加载按钮:</p>

    <button class="btn btn-primary">
        <span class="spinner-border spinner-border-sm"></span>
    </button>

    <button class="btn btn-primary">
        <span class="spinner-border spinner-border-sm"></span>
        Loading..
    </button>

    <button class="btn btn-primary" disabled>
        <span class="spinner-border spinner-border-sm"></span>
        Loading..
    </button>

    <button class="btn btn-primary" disabled>
        <span class="spinner-grow spinner-grow-sm"></span>
        Loading..
    </button>
</div>
</body>
</html>

在这里插入图片描述

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

心醉瑶瑾前

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值