国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

基于Bootstrap的網頁設計實例

2019-11-19 17:21:26
字體:
來源:轉載
供稿:網友

廢話不多說了,直接給大家貼代碼了,具體代碼如下所示:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><!DOCTYPE html ><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>首頁菜單</title><link href="css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"><style type="text/css"> body{  padding-top: 50px;  padding-bottom: 50px; } .carousel{/* 滾動圖片樣式 */  height: 500px;  background-color: #000;  margin-bottom: 60px; } .carousel .item{  height: 500px;  background-color: #000; } .carousel img{  width: 100%; } .carousel-caption p{  margin-bottom:20px;  font-size: 20px;  line-height: 1.8; } #summary-container .col-md-4{  text-align:center;/*居中對齊*/ } hr.divder{  margin:40px 0; } .feature{  padding: 30px 0; } .feature-heading{  font-size:50px;  color:#2a6496;  margin-top:120px; } .feature-heading .text-muted{  font-size: 28px;  color:#999; }</style></head><body><nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation"> <div class="containe">  <div class="navbar-header">   <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#demo-navbar">    <span class="sr-only">Toggle navigation</span><!-- Toggle navigation不能缺少 -->    <span class="icon-bar"></span>    <span class="icon-bar"></span>    <span class="icon-bar"></span>      </button>   <a class="navbar-brand" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >現代瀏覽器博物館</a>  </div>   <!-- 導航欄 -->  <div class="collapse navbar-collapse" id="demo-navbar">   <ul class="nav navbar-nav">    <li class="active"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >綜述</a></li>       <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >簡述</a></li>       <li class="dropdown">    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="dropdown-toggle" data-toggle="dropdown">特點 <span class="caret"></span></a>     <ul class="dropdown-menu" role="menu">      <li><a href="#tab-chrome" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Chrome</a></li>      <li><a href="#tab-firefox" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Firefox</a></li>      <li><a href="#tab-safari" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Safari</a></li>      <!-- <li class="divider"></li> //divider:分隔符 -->      <li><a href="#tab-opera" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Opera</a></li>      <li><a href="#tab-ie" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >IE9</a></li>     </ul>    </li>       <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-toggle="modal" data-target="#about">關于</a></li>       <li>      </ul>  </div> </div></nav><div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators">  <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>  <li data-target="#carousel-example-generic" data-slide-to="1"></li>  <li data-target="#carousel-example-generic" data-slide-to="2"></li>  <li data-target="#carousel-example-generic" data-slide-to="3"></li>  <li data-target="#carousel-example-generic" data-slide-to="4"></li> </ol> <div class="carousel-inner" role="listbox">  <div class="item active">   <img src="images/chrome-big.jpg" alt="1 slide">   <div class="carousel-caption">    <h1>Chrome</h1>    <p>Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/firefox-big.jpg" alt="2 slide" >   <div class="carousel-caption">    <h1>Firefox</h1>    <p>Mozilla Firefox,中文名通常稱為“火狐”或者“火狐瀏覽器”,是一個開源的網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/safari-big.jpg" alt="3 slide" >   <div class="carousel-caption">    <h1>Safari</h1>    <p>Safari,是蘋果計算機的最新操作系統(tǒng)Mas OS X中的瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/opera-big.jpg" alt="4 slide" >   <div class="carousel-caption">    <h1>Opera</h1>    <p>Opera瀏覽器,是一款挪威Opera Software ASA公司制作的支持多頁面標簽式的網絡瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/ie-logo.jpg" alt="5 slide" >   <div class="carousel-caption">    <h1>IE</h1>    <p>Internet Explorer,簡稱IE,是微軟公司推出的一款網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div> </div> <a class="left carousel-control" href="#carousel-example-generic" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button" data-slide="prev">  <span class="glyphicon glyphicon-chevron-left"></span>  <span class="sr-only">上一頁</span> </a> <a class="right carousel-control" href="#carousel-example-generic" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button" data-slide="next">  <span class="glyphicon glyphicon-chevron-right"></span>  <span class="sr-only">下一頁</span> </a></div><div class="container" id="summary-container"> <div class="row">  <div class="col-md-4">  <img class="img-circle" src="images/chrome-logo-small.jpg" alt="chrome">  <h2>Chrome</h2>  <p>Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器</p>  <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p>  </div>  <div class="col-md-4">  <img class="img-circle" src="images/firefox-logo-small.jpg" alt="chrome">  <h2>Firefox</h2>  <p>Mozilla Firefox,中文名通常稱為“火狐”或者“火狐瀏覽器”,是一個開源的網頁瀏覽器</p>  <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p>  </div>  <div class="col-md-4">  <img class="img-circle" src="images/safari-logo-small.jpg" alt="chrome">  <h2>Safari</h2>  <p>Safari,是蘋果計算機的最新操作系統(tǒng)Mas OS X中的瀏覽器</p>  <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p>  </div> </div> <hr class="divder"> <ul class="nav nav-tabs" role="tablist" id="tab-list">  <li class="active"><a href="#tab-chrome" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="tab" data-toggle="tab">Chrome</a></li>  <li><a href="#tab-firefox" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="tab" data-toggle="tab">Firefox</a></li>  <li><a href="#tab-safari" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="tab" data-toggle="tab">Safari</a></li>  <li><a href="#tab-opera" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="tab" data-toggle="tab">Opera</a></li>  <li><a href="#tab-ie" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="tab" data-toggle="tab">IE</a></li> </ul> <div class="tab-content">  <div class="tab-pane active" id="tab-chrome">   <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Google Chrome <span class="text-muted">使用最廣泛的瀏覽器</span></h2>    <p class="lead">Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器。    該瀏覽器是基于其他開源軟件撰寫,包括Webkit,目標是提升穩(wěn)定性,速度和安全性,并創(chuàng)造出簡單且有效率的使用這界面    </p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/chrome-logo.jpg">   </div>  </div>  </div>  <div class="tab-pane" id="tab-firefox">  <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Mozilla Firefox<span class="text-muted">燃燒的狐貍</span></h2>    <p class="lead">Mozilla Firefox,中文名稱為“火狐”或“火狐瀏覽器”,是一個開源網頁瀏覽器,使用Gecko引擎(非ie內核),支持多種操作系統(tǒng)如window、Mac和linux。</p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/firefox-logo.jpg">   </div>  </div>  </div>  <div class="tab-pane" id="tab-safari">  <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Safari<span class="text-muted">Mac用戶首先</span></h2>    <p class="lead">Safari,是蘋果計算機的最新操作系統(tǒng)Mac OS X中的瀏覽器,使用了KDE的KHTML作為瀏覽器的運算核心。Safari在2003年1月7日首度發(fā)行測試版,并成為Mac OS X v10.3與之后的默認瀏覽器,也是iPhone與TPAD和iPod touch的指定瀏覽器。</p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/safari-logo.jpg">   </div>  </div>  </div>  <div class="tab-pane" id="tab-opera">  <div class="row feature">   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/opera-logo.jpg">   </div>   <div class="col-md-7">    <h2 class="feature-heading">Opera<span class="text-muted">小眾但易用</span></h2>    <p class="lead">Opera瀏覽器,是一款挪威Opera Software ASA公司制作的支持多也頁面標簽式瀏覽的網絡瀏覽器。是跨平臺瀏覽器可以在windowns,Mac和Linux三個操作系統(tǒng)平臺上運行。</p>   </div>  </div>  </div>  <div class="tab-pane" id="tab-ie">  <div class="row feature">   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/ie-logo.jpg">   </div>   <div class="col-md-7">    <h2 class="feature-heading">IE<span class="text-muted">老招牌</span></h2>    <p class="lead">Internet Explorer,原稱Microsoft Internet Explorer(7,8,9,10版本),簡稱IE,是美國微軟公司推出的一款網頁瀏覽器。它采用的排版引擎(內核)為Trident</p>   </div>  </div>  </div> </div> <hr class="divider"> <footer>  <p class="pull-right"><a href="#top" rel="external nofollow" rel="external nofollow" >回到頂部</a></p>  <div id="time"></div> </footer></div><!-- 彈框 --><div class="modal fade" id="about"> <div class="modal-dialog">  <div class="modal-content">   <div class="modal-header"><!-- 頭部 -->    <button type="button" class="close" data-dismiss="modal">    <span aria-hidden="true">×</span>    <span class="sr-only">Close</span>    </button>    <h4 class="modal-title">關于</h4>   </div>   <div class="modal-body"><!-- 內容 -->   <p>網站基于Bootstrap開發(fā);設計風格簡單清爽!內容是關于當今主流瀏覽器介紹,并附有下載資源。</p>   </div>   <div class="modal-footer"><!-- 底部 -->    <button type="button" class="btn btn-default" data-dismiss="modal">了解</button>    <!-- <button type="button" class="btn btn-primary">Save changes</button> -->   </div>  </div> </div></div><script src="js/jquery-1.11.1.min.js"></script><script src="js/bootstrap.min.js"></script></body><script>  document.getElementById('time').innerHTML=new Date().toLocaleString();  setInterval("document.getElementById('time').innerHTML=new Date().toLocaleString();",1000);$(document).ready(function(){ $("#demo-navbar .dropdown-menu a").click(function(){  var href=$(this).attr("href");  $("#tab-list a[href='"+href+"']").tab("show"); });});</script> </html>

導航及下拉菜單制作

<nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation"> <div class="containe">  <div class="navbar-header">   <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#demo-navbar">    <span class="sr-only">Toggle navigation</span><!-- Toggle navigation不能缺少 -->    <span class="icon-bar"></span>    <span class="icon-bar"></span>    <span class="icon-bar"></span>      </button>   <a class="navbar-brand" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >現代瀏覽器博物館</a>  </div>   <!-- 導航欄 -->  <div class="collapse navbar-collapse" id="demo-navbar">   <ul class="nav navbar-nav">    <li class="active"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >綜述</a></li>       <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >簡述</a></li>       <li class="dropdown">    <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="dropdown-toggle" data-toggle="dropdown">特點 <span class="caret"></span></a>     <ul class="dropdown-menu" role="menu">      <li><a href="#tab-chrome" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Chrome</a></li>      <li><a href="#tab-firefox" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Firefox</a></li>      <li><a href="#tab-safari" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Safari</a></li>      <!-- <li class="divider"></li> //divider:分隔符 -->      <li><a href="#tab-opera" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Opera</a></li>      <li><a href="#tab-ie" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >IE9</a></li>     </ul>    </li>       <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-toggle="modal" data-target="#about">關于</a></li>       <li>      </ul>  </div> </div></nav>

滾動圖片廣告

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators">  <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>  <li data-target="#carousel-example-generic" data-slide-to="1"></li>  <li data-target="#carousel-example-generic" data-slide-to="2"></li>  <li data-target="#carousel-example-generic" data-slide-to="3"></li>  <li data-target="#carousel-example-generic" data-slide-to="4"></li> </ol> <div class="carousel-inner" role="listbox">  <div class="item active">   <img src="images/chrome-big.jpg" alt="1 slide">   <div class="carousel-caption">    <h1>Chrome</h1>    <p>Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/firefox-big.jpg" alt="2 slide" >   <div class="carousel-caption">    <h1>Firefox</h1>    <p>Mozilla Firefox,中文名通常稱為“火狐”或者“火狐瀏覽器”,是一個開源的網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/safari-big.jpg" alt="3 slide" >   <div class="carousel-caption">    <h1>Safari</h1>    <p>Safari,是蘋果計算機的最新操作系統(tǒng)Mas OS X中的瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/opera-big.jpg" alt="4 slide" >   <div class="carousel-caption">    <h1>Opera</h1>    <p>Opera瀏覽器,是一款挪威Opera Software ASA公司制作的支持多頁面標簽式的網絡瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div>  <div class="item">   <img src="images/ie-logo.jpg" alt="5 slide" >   <div class="carousel-caption">    <h1>IE</h1>    <p>Internet Explorer,簡稱IE,是微軟公司推出的一款網頁瀏覽器</p>    <p><a class="btn btn-lg btn-primary"  role="button" target="_blank">點擊下載</a></p>   </div>  </div> </div> <a class="left carousel-control" href="#carousel-example-generic" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button" data-slide="prev">  <span class="glyphicon glyphicon-chevron-left"></span>  <span class="sr-only">上一頁</span> </a> <a class="right carousel-control" href="#carousel-example-generic" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button" data-slide="next">  <span class="glyphicon glyphicon-chevron-right"></span>  <span class="sr-only">下一頁</span> </a></div>

柵格布局

<div class="row"> <div class="col-md-4"> <img class="img-circle" src="images/chrome-logo-small.jpg" alt="chrome"> <h2>Chrome</h2> <p>Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器</p> <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p> </div> <div class="col-md-4"> <img class="img-circle" src="images/firefox-logo-small.jpg" alt="chrome"> <h2>Firefox</h2> <p>Mozilla Firefox,中文名通常稱為“火狐”或者“火狐瀏覽器”,是一個開源的網頁瀏覽器</p> <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p> </div> <div class="col-md-4"> <img class="img-circle" src="images/safari-logo-small.jpg" alt="chrome"> <h2>Safari</h2> <p>Safari,是蘋果計算機的最新操作系統(tǒng)Mas OS X中的瀏覽器</p> <p><a class="btn btn-default" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button">點擊下載</a></p> </div> </div>

標簽頁

<div class="tab-content">  <div class="tab-pane active" id="tab-chrome">   <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Google Chrome <span class="text-muted">使用最廣泛的瀏覽器</span></h2>    <p class="lead">Google Chrome,又稱Google瀏覽器,是一個由Google(谷歌)公司開發(fā)的網頁瀏覽器。    該瀏覽器是基于其他開源軟件撰寫,包括Webkit,目標是提升穩(wěn)定性,速度和安全性,并創(chuàng)造出簡單且有效率的使用這界面    </p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/chrome-logo.jpg">   </div>  </div>  </div>    <div class="tab-pane" id="tab-firefox">  <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Mozilla Firefox<span class="text-muted">燃燒的狐貍</span></h2>    <p class="lead">Mozilla Firefox,中文名稱為“火狐”或“火狐瀏覽器”,是一個開源網頁瀏覽器,使用Gecko引擎(非ie內核),支持多種操作系統(tǒng)如window、Mac和linux。</p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/firefox-logo.jpg">   </div>  </div>  </div>    <div class="tab-pane" id="tab-safari">  <div class="row feature">   <div class="col-md-7">    <h2 class="feature-heading">Safari<span class="text-muted">Mac用戶首先</span></h2>    <p class="lead">Safari,是蘋果計算機的最新操作系統(tǒng)Mac OS X中的瀏覽器,使用了KDE的KHTML作為瀏覽器的運算核心。Safari在2003年1月7日首度發(fā)行測試版,并成為Mac OS X v10.3與之后的默認瀏覽器,也是iPhone與TPAD和iPod touch的指定瀏覽器。</p>   </div>   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/safari-logo.jpg">   </div>  </div>  </div>    <div class="tab-pane" id="tab-opera">  <div class="row feature">   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/opera-logo.jpg">   </div>   <div class="col-md-7">    <h2 class="feature-heading">Opera<span class="text-muted">小眾但易用</span></h2>    <p class="lead">Opera瀏覽器,是一款挪威Opera Software ASA公司制作的支持多也頁面標簽式瀏覽的網絡瀏覽器。是跨平臺瀏覽器可以在windowns,Mac和Linux三個操作系統(tǒng)平臺上運行。</p>   </div>  </div>  </div>    <div class="tab-pane" id="tab-ie">  <div class="row feature">   <div class="col-md-5">    <img class="feature-image img-responsive" src="images/ie-logo.jpg">   </div>   <div class="col-md-7">    <h2 class="feature-heading">IE<span class="text-muted">老招牌</span></h2>    <p class="lead">Internet Explorer,原稱Microsoft Internet Explorer(7,8,9,10版本),簡稱IE,是美國微軟公司推出的一款網頁瀏覽器。它采用的排版引擎(內核)為Trident</p>   </div>  </div>  </div> </div>

彈出框制作

<div class="modal fade" id="about"> <div class="modal-dialog">  <div class="modal-content">     <div class="modal-header"><!-- 頭部 -->    <button type="button" class="close" data-dismiss="modal">    <span aria-hidden="true">×</span>    <span class="sr-only">Close</span>    </button>    <h4 class="modal-title">關于</h4>   </div>      <div class="modal-body"><!-- 內容 -->   <p>網站基于Bootstrap開發(fā);設計風格簡單清爽!內容是關于當今主流瀏覽器介紹,并附有下載資源。</p>   </div>      <div class="modal-footer"><!-- 底部 -->    <button type="button" class="btn btn-default" data-dismiss="modal">了解</button>    <!-- <button type="button" class="btn btn-primary">Save changes</button> -->   </div>     </div> </div></div>

底部設計

  <footer> <p class="pull-right"><a href="#top" rel="external nofollow" rel="external nofollow" >回到頂部</a></p> <div id="time"></div>   <footer>

JS腳本

<script>   document.getElementById('time').innerHTML=new Date().toLocaleString();   setInterval("document.getElementById('time').innerHTML=new Date().toLocaleString();",1000);$(document).ready(function(){  $("#demo-navbar .dropdown-menu a").click(function(){    var href=$(this).attr("href");    $("#tab-list a[href='"+href+"']").tab("show");  });});</script>
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation">  <div class="containe">    <div class="navbar-header">      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#demo-navbar">        <span class="sr-only">Toggle navigation</span><!-- Toggle navigation不能缺少 -->        <span class="icon-bar"></span>        <span class="icon-bar"></span>        <span class="icon-bar"></span>            </button>      <a class="navbar-brand" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >現代瀏覽器博物館</a>    </div>     <!-- 導航欄 -->    <div class="collapse navbar-collapse" id="demo-navbar">      <ul class="nav navbar-nav">        <li class="active"><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >綜述</a></li>              <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >簡述</a></li>              <li class="dropdown">        <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="dropdown-toggle" data-toggle="dropdown">特點 <span class="caret"></span></a>          <ul class="dropdown-menu" role="menu">            <li><a href="#tab-chrome" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Chrome</a></li>            <li><a href="#tab-firefox" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Firefox</a></li>            <li><a href="#tab-safari" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Safari</a></li>            <!-- <li class="divider"></li> //divider:分隔符 -->            <li><a href="#tab-opera" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Opera</a></li>            <li><a href="#tab-ie" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >IE9</a></li>          </ul>        </li>              <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" data-toggle="modal" data-target="#about">關于</a></li>              <li>            </ul>    </div>  </div></nav>

以上所述是小編給大家介紹的基于Bootstrap的網頁設計實例,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對武林網網站的支持!

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 安义县| 酒泉市| 万盛区| 枝江市| 晴隆县| 焦作市| 宿州市| 栾城县| 青州市| 开阳县| 高邑县| 嘉义市| 阿图什市| 商河县| 班戈县| 从化市| 平果县| 汶上县| 蒙城县| 陈巴尔虎旗| 荣昌县| 襄城县| 吉林市| 温泉县| 漾濞| 伊金霍洛旗| 永昌县| 张家界市| 上思县| 红原县| 罗平县| 九寨沟县| 苗栗市| 堆龙德庆县| 武安市| 罗江县| 邢台市| 巴马| 舒兰市| 南皮县| 建宁县|