Bootstrap 超大屏幕

2021-10-15 13:47 更新

Bootstrap 超大屏幕(Jumbotron)

本章將講解 Bootstrap 支持的另一個(gè)特性,超大屏幕(Jumbotron)。顧名思義該組件可以增加標(biāo)題的大小,并為登陸頁面內(nèi)容添加更多的外邊距(margin)。使用超大屏幕(Jumbotron)的步驟如下:

  • 創(chuàng)建一個(gè)帶有 class .jumbotron. 的容器 <div>。
  • 除了更大的 <h1>,字體粗細(xì) font-weight 被減為 200px。

下面的實(shí)例演示了這點(diǎn):

<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap 實(shí)例 - 超大屏幕(Jumbotron)</title>
   <link  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="stylesheet">
   <script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js" rel="external nofollow"  rel="external nofollow" ></script>
   <script src="http://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js" rel="external nofollow"  rel="external nofollow" ></script>
</head>
<body>

<div class="container">
   <div class="jumbotron">
      <h1>歡迎登陸頁面!</h1>
      <p>這是一個(gè)超大屏幕(Jumbotron)的實(shí)例。</p>
      <p><a class="btn btn-primary btn-lg" role="button">
         學(xué)習(xí)更多</a>
      </p>
   </div>
</div>

</body>
</html>

結(jié)果如下所示:

超大屏幕(Jumbotron)

為了獲得占用全部寬度且不帶圓角的超大屏幕,請?jiān)谒械?.container class 外使用 .jumbotron class,如下面的實(shí)例所示:

<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap 實(shí)例 - 超大屏幕(Jumbotron)</title>
   <link  rel="external nofollow" target="_blank"  rel="external nofollow" target="_blank"  rel="stylesheet">
   <script src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js" rel="external nofollow"  rel="external nofollow" ></script>
   <script src="http://cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js" rel="external nofollow"  rel="external nofollow" ></script>
</head>
<body>

<div class="jumbotron">
   <div class="container">
      <h1>歡迎登陸頁面!</h1>
      <p>這是一個(gè)超大屏幕(Jumbotron)的實(shí)例。</p>
      <p><a class="btn btn-primary btn-lg" role="button">
         學(xué)習(xí)更多</a>
      </p>
   </div>
</div>

</body>
</html>

結(jié)果如下所示:

全寬的超大屏幕(Jumbotron)

相關(guān)閱讀

Bootstrap 超大屏幕(Jumbotron)

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號