bootstrap網頁架構的使用方法,bootstrap架構

來源:互聯網
上載者:User

bootstrap網頁架構的使用方法,bootstrap架構

本文為大家分享了網頁架構bootstrap的簡單使用方法,供大家參考,具體內容如下

直接百度bootstrap可以搜到bootstrap中文網站,然後最好建議選擇下載源碼。

下載完成後,將dist/css/bootstrap.min.css複製到項目的根目錄下。

具體的模組介紹和使用在中文網站上都有講述,這裡以製作的一個簡單樣本為例:

<!DOCTYPE html><html lang="en"><head>  <meta charset="UTF-8">  <title>使用bootStrap進行響應式布局</title>  <link href="bootstrap.min.css" type="text/css" rel="stylesheet"></head><body><!--導航條--><!--class中"navbar navbar-default是預設的顏色,而navbar-fixed-top是取消導覽列的圓角效果,role可以不要"--><nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">  <!--添加<div class="container"></div>是為了讓介面有置中的效果-->  <div class="container">    <div class="navbar-header">      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">        <span class="sr-only">Toggle navigation</span>        <span class="icon-bar"></span>        <span class="icon-bar"></span>        <span class="icon-bar"></span>      </button>      <a class="navbar-brand" href="#">ProjectName</a>    </div>    <!-- Collect the nav links, forms, and other content for toggling -->    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">      <form class="navbar-form navbar-right" role="search">        <div class="form-group">          <input type="text" class="form-control" placeholder="Email">        </div>        <div class="form-group">          <input type="password" class="form-control" placeholder="Password">        </div>        <button type="submit" class="btn btn-success" onclick="signin()">Sign in</button>        <script>          <!--這裡是登入按鈕的方法實現,可以根據需要自訂-->          function signin(){            alert("點擊了登入");          }        </script>      </form>    </div><!-- /.navbar-collapse -->  </div><!-- /.container-fluid --></nav><!--巨幕--><div class="jumbotron">  <div class="container">    <h1>Hello, world!</h1>    <p>這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 </p>    <!-- btn-primary是對按鈕外觀樣式的調整 btn-lg是對按鈕樣式的設定 btn-lg代表按鈕的大小類型 其中 &raque是尖角號">>"-->    <p><a class="btn btn-primary btn-lg" href="http://www.baidu.com" role="button">更多內容 »</a></p>  </div></div><div class="container">  <div class="row">    <div class="col-md-4">      <h2>Heading1</h2>      <p>這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文</p>      <p><a class="btn btn-group-vertical btn-lg" role="btton">View details »</a></p>    </div>    <div class="col-md-4">      <h2>Heading2</h2>      <p>這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文</p>      <p><a class="btn btn-group-vertical btn-lg" role="button" href="http://www.baidu.com">跳轉到百度 »</a></p>    </div>    <div class="col-md-4">      <h2>Heading3</h2>      <p>這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文 這裡是測試文</p>      <p><a class="btn btn-group-vertical btn-lg" role="button">View details »</a></p>    </div>  </div>  <hr/>  <foot>    <!--"©"是 © 符號-->    <p>©company2014</p>  </foot></div></body></html>

以上就是本文的全部內容,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.