Bootstrap
学习可用依据其官网提供的或者菜鸟教程之类(http://www.runoob.com/bootstrap/bootstrap-tutorial.html)
概念
Bootstrap,来自 Twitter,是目前最受欢迎的前端框架。Bootstrap 是基于 HTML、CSS、JAVASCRIPT 的,它简洁灵活,使得 Web 开发更加快捷。
优点
1.移动设备优先:自 Bootstrap 3 起,框架包含了贯穿于整个库的移动设备优先的样式。
2.浏览器支持:所有的主流浏览器都支持 Bootstrap。
3.容易上手:只要您具备 HTML 和 CSS 的基础知识,您就可以开始学习 Bootstrap。
4.响应式设计:Bootstrap 的响应式 CSS 能够自适应于台式机、平板电脑和手机。更多有关响应式设计的内容详见 Bootstrap 响应式设计。
Bootstrap安装环境
1.下载Bootstrap(http://getbootstrap.com/ )
2.导入:注意它们的顺序是有序的,有关联
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
常用控件
其实就是提供class加上就有设定的样式,对于一般的开发完全够用,而且样式是可以叠加的
标签
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<span class="label label-default">默认标签</span>
<span class="label label-primary">主要标签</span>
<span class="label label-success">成功标签</span>
<span class="label label-info">信息标签</span>
<span class="label label-warning">警告标签</span>
<span class="label label-danger">危险标签</span>
</body>
</html>
图片
<!--圆角-->
<img src="../img/星空一花.jpg" class="img-rounded"/>
<!--圆型-->
<img src="../img/星空一花.jpg" class="img-circle"/>
<!--缩略图-->
<img src="../img/星空一花.jpg" class="img-thumbnail"/>
列表组
<div class="list-group" style="width: 300px;">
<a href="#" class="list-group-item active">xxxx</a>
<a href="#" class="list-group-item">xxxx</a>
<a href="#" class="list-group-item">xxxx</a>
<a href="#" class="list-group-item">xxxx</a>
<a href="#" class="list-group-item">xxxx</a>
</div>
鼠标悬浮会有灰色
表格
<!--
<table class="table">
<caption>基本的表格布局</caption>
<table class="table table-condensed">
<caption>精简表格布局</caption>
<table class="table table-striped">
<caption>条纹表格布局</caption>
<table class="table table-bordered">
<caption>边框表格布局</caption>
<table class="table table-hover">
<caption>悬停表格布局</caption>
-->
<table class="table table-hover">
<caption>悬停表格布局</caption>
<thead>
<tr>
<th>名称</th>
<th>年龄</th>
<th>性别</th>
</tr>
</thead>
<tbody>
<tr>
<td>小红</td>
<td>18</td>
<td>女</td>
</tr>
<tr>
<td>小黄</td>
<td>19</td>
<td>男</td>
</tr>
<tr>
<td>小绿</td>
<td>20</td>
<td>男</td>
</tr>
</tbody>
精简表格布局相对于基本布局就是字体大小、行间距之类变化,条纹就是固定设置的隔行换色,边框就是设置边框,悬停变灰色就是鼠标移入移出事件
表单(输入框、密码框、单选、多选、下拉、各种按钮)
<form class="form-horizontal " role="form" >
<div class="form-group">
<label class="col-sm-2 control-label">输入框:</label>
<div class="col-sm-10 col-lg-4">
<input type="text" class="form-control" placeholder="请输入输入框">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">密码框:</label>
<div class="col-sm-10 col-lg-4">
<input type="password" class="form-control" placeholder="请输入密码框">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">单选框:</label>
<div class="radio col-sm-10">
<label>
<input name="sex" type="radio" checked="checked">选项 1
</label>
<label>
<input name="sex" type="radio" >选项 2
</label>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">多选框:</label>
<div class="col-sm-10">
<label class="checkbox-inline">
<input type="checkbox"> 选项 1
</label>
<label class="checkbox-inline">
<input type="checkbox"> 选项 2
</label>
<label class="checkbox-inline">
<input type="checkbox"> 选项 3
</label>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">下拉链表:</label>
<div class=" col-sm-10 col-lg-4">
<select class="form-control ">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">提交按钮</button>
<button type="reset" class="btn btn-default">重置按钮</button>
<button type="button" class="btn btn-default">普通按钮</button>
</div>
</div>
</form>
表单比我们没加样式好看,输入框选中变深色,下拉列表,按钮选中变灰色之类
模态框
<!-- 按钮触发模态框 -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">开始演示模态框</button>
<!-- 模态框(Modal) -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">模态框(Modal)标题</h4>
</div>
<div class="modal-body">在这里添加一些文本</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" onclick="fun01()">关闭</button>
<button type="button" class="btn btn-primary" onclick="fun02()">提交更改</button>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function fun01(){
alert("no");
}
function fun02(){
alert("yes");
}
</script>
点击按钮的弹框
可视化定制
标签:布局,xxxx,2Bootstrap,表格,标签,Bootstrap,按钮,69 From: https://blog.csdn.net/gangain/article/details/141086238就是优点中提到的响应式设计,官网提供
https://www.bootcss.com/p/layoutit/
拖动布局,拖动添加组件、样式之类,再进行对应的修改,进行页面的设计