您的位置:首页 > Web前端 > BootStrap

0001 -- 搭建bootstrap环境。

2016-01-16 00:00 615 查看
摘要: 0001 -- 搭建bootstrap环境。

bootstrap 的环境至少需要3个文件:bootstrap.min.css 、jquery.mis.js 、bootstrap.min.js

所需文件可以从jquery官网和bootstrap中文网中可以下载。

这3个文件是的引入是有顺序的,如果顺序不正确,则bootstrap不能正常执行,顺序为:

bootstrap.min.css

query.mis.js

bootstrap.min.js

这样,bootstrap 环境就搭建完成了!

完整代码如下:

<!DOCTYPE html><!-- HTML5文档 -->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- IE浏览器的接下 -->
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 视窗的设置 -->
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>Bootstrap 101 Template</title>

<!-- Bootstrap -->
<link href="../bootstrap-3.3.5-dist/css/bootstrap.min.css" rel="stylesheet">

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<h1>hello world</h1>

<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="../bootstrap-3.3.5-dist/js/jquery-1.9.1.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="../bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  bootstrap