码迷,mamicode.com
首页 > Web开发 > 详细

Bootstrap的在网页中使用

时间:2016-05-06 12:58:55      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

一、Bootstrap简介:

      Bootstrap是Twitter推出的一个开源的用于前端开发的工具包。它由Twitter的设计师Mark Otto和Jacob Thornton合作开发。Bootstrap中文官网http://www.bootcss.com/,Bootstrap官网http://getbootstrap.com/

 

二、Bootstrap源码:

技术分享

less/、js/和fonts/ 目录分别包含了 CSS、JS 和字体图标的源码。

dist/ 目录包含了上面所说的预编译 Bootstrap 包内的所有文件。

docs/ 包含了所有文档的源码文件

examples/ 目录是 Bootstrap 官方提供的实例工程

 

三、Bootstrap文件目录(预编译版)

技术分享

*编译好的 CSS 和 JS (bootstrap.*) 文件

*经过压缩的 CSS 和 JS (bootstrap.min.*) 文件

*CSS 源码映射表 (bootstrap.*.map)

*来自Glyphicons 的图标字体

四、说明:

?    Bootstrap 插件全部依赖 jQuery

?    Bootstrap 的所有 JavaScript 插件都依赖 jQuery,因此 jQuery 必须在 Bootstrap 之前引入,就像在基本模版中所展示的一样。

五、实现的一个例子

(1)效果图:

技术分享

(2)代码及其步骤:

     1)到Bootstrap官网下载,中文网站:http://www.bootcss.com/

<1>在下图所示,点击”Bootstrap3中文文档(v3.3.5)”

技术分享

   <2>在下图所示,点击下载Bootstrap

技术分享

<3>下载对应的文件

技术分享

<4>引入文件时需要注意的事项

技术分享

2)参照这里的官网模板http://getbootstrap.com/components/  复制需要的模板对应的代码

 

      3)自己创建的代码目录结构:

技术分享

说明:bootstrap.min.css、bootstrap.min.js、jquery.min.js是在官网下载的。

index.html的内容如下:

<!-- bootstrap.html -->
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap的使用</title>
<meta Charset="Utf-8"/>
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<script src="js/jquery-1.12.3.js"></script>
<script src="js/bootstrap.min.js"></script>
<style type="text/css">
         body {
            margin: 0;
         }
         .left_bar {
            float : left;
            width : 80%;
         }
         .right_bar {
            float : right;
            width : 20%;
         }
		.mycontainer{
			float : left;
            width : 80%;		
		}
		.caption {
			float:left;
			width:30%;
			margin:5px;
		}	
</style>
</head>
<body>

<!-- 导航栏部分 -->
<div class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<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="#">Bootstrap练习</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">主页</a></li>
<li><a href="#about">关于</a></li>
<li><a href="#contact">联系我们</a></li>
</ul>
</div>
</div>
</div>

<!--大文本显示区部分-->
<div class="container">
<div class="jumbotron left_bar">
<h1>你好,世界</h1>
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique</p>
<p><a href="#" class="btn btn-primary btn-lg" role="button">查看更多 »</a></p>
</div>
<!-- 右边信息栏-->
<div class="col-sm-4 right_bar">
<ul class="list-group">
<li class="list-group-item">信息栏一</li>
<li class="list-group-item">信息栏二</li>
<li class="list-group-item">信息栏三</li>
<li class="list-group-item">信息栏四</li>
<li class="list-group-item">信息栏五</li>
<li class="list-group-item">信息栏六</li>
<li class="list-group-item">信息栏日</li>
</ul>
</div>
</div>

<!-- 底部部分6个字幕 -->
<div class="container">
 <div class="mycontainer">
  <div class="caption">
	<h3>标题1</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
 <div class="caption">
	<h3>标题2</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
  <div class="caption">
	<h3>标题3</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
  <div class="caption">
	<h3>标题4</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
  <div class="caption">
	<h3>标题5</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
  <div class="caption">
	<h3>标题6</h3>
	<p>This is asimple here unit,a simple jumbotron-style component for calling extra attention to featured content or information</p>
	<p><a href="#" class="btn btn-default" role="button">查看详细</a></p>
  </div>
 </div>
</div>
</body>
</html>

六、总结:

    Bootstrap官网有许多例子可以参考,那些代码可以直接引用,方便前端程序员快速开发网页。如果需要对某个模板加以控制,就要找到它对应的id或者类,然后在css里面对它进行约束即可。



Bootstrap的在网页中使用

标签:

原文地址:http://blog.csdn.net/sq_bang/article/details/51329171

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!