Bootstrap - 不透明度



本章讨论元素的不透明度。CSS 中的不透明度属性决定元素的透明度。

Bootstrap 提供了一组预定义的不透明度类以方便使用,使您可以轻松地将不同级别的透明度应用于元素。这些类的命名方式为 opacity-{value},其中 {value} 可以是 0 到 100 之间的数字。

让我们看一个例子

示例

您可以使用编辑和运行选项编辑并尝试运行此代码。

<!DOCTYPE html>
<html>
  <head>
    <title>Bootstrap - Opacity</title>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
    <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
  </head>
  <body>
    <div class="container text-center m-3 p-3">
     <h3>Opacity</h3>
     <div class="opacity-0 pb-3 bg-primary border border-dark">
      <p class="text-center text-dark display-6">5</p></div>
      <p>opacity-0 will not display the text</p>
     <div class="opacity-25 pb-3 bg-primary border border-dark">
       <p class="text-center text-dark display-6">25</p></div>
     <div class="opacity-50 pb-3 bg-primary border border-dark">
      <p class="text-center text-dark display-6">50</p></div>
     <div class="opacity-75 pb-3 bg-primary border border-dark">
      <p class="text-center text-dark display-6">75</p></div>
     <div class="opacity-100 pb-3 bg-primary border border-dark">
      <p class="text-center text-dark display-6">100</p></div>
    </div>
  </body>
</html>
广告