bootstrap精简教程

bootstrap 的学习非常简单,并且它所提供的样式又非常精美。只要稍微简单的学习就可以制作出漂亮的页面。

bootstrap中文网:http://v3.bootcss.com/ 

bootstrap提供了三种类型的下载:

   1、用于生产环境的bootstrap

    编译并压缩后的CSS、JavaScript和字体文件。不包含文档和源码文件。

 2、Bootstrap源码

    Less、JavaScript和字体文件的源码,并且带有文档。需要Less编译器和一些设置工作。

 3、Sass

    这是Bootstrap从Less到Sass的源码移植项目,用于快速的在Rails、Compass或只针对Sass的项目中引入。

其实我们不用下载bootstrap也可以使用它:

Bootstrap中文网为Bootstrap专门构建了自己的免费CDN加速服务。基于国内云厂商的CDN服务,访问速度更快、加速效果更明显、没有速度和带宽限制、永久免费。

<!DOCTYPE html>
<html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1"><!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! --><title>Bootstrap 101 Template</title><!-- Bootstrap --><link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css"></head><body><h1>你好,bootstrap!</h1><!-- jQuery (necessary for Bootstrap's JavaScript plugins) --><script src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script><!-- Include all compiled plugins (below), or include individual files as needed --><script src="http://cdn.bootcss.com/bootstrap/3.3.4/js/bootstrap.min.js"></script></body>
</html>

字体图标

bootstrap默认提供了二百多个图标。我们可以通过span标签来使用这些图标:

    <h3>图标</h3>   <span class="glyphicon glyphicon-home"></span><span class="glyphicon glyphicon-signal"></span><span class="glyphicon glyphicon-cog"></span><span class="glyphicon glyphicon-apple"></span><span class="glyphicon glyphicon-trash"></span><span class="glyphicon glyphicon-play-circle"></span><span class="glyphicon glyphicon-headphones"></span>

 

按钮

<button></button>标签用于创建按钮,bootstrap提供了丰富的按钮样式。

<h3>按钮</h3><button type="button" class="btn btn-default">按钮</button><button type="button" class="btn btn-primary">primary</button><button type="button" class="btn btn-success">success</button><button type="button" class="btn btn-info">info</button><button type="button" class="btn btn-warning">warning</button><button type="button" class="btn btn-danger">danger</button><h3>按钮尺寸</h3><button type="button" class="btn btn-default">按钮</button><button type="button" class="btn btn-primary btn-lg">primary</button><button type="button" class="btn btn-success btn-sm">success</button><button type="button" class="btn btn-info btn-xs">info</button><h3>把图标显示在按钮里</h3><button type="button" class="btn btn-default"><span class="glyphicon glyphicon-home"></span>  按钮</button>

   按钮除了有默认的大小外,bootstrap还提供三个参数来调整按钮的大小,分别是:btn-lg、btn-sm和btn-xs。

下拉菜单

下拉菜单是最常见的交互之一,bootstrap提供了漂亮的样式。

  <h3>下拉菜单</h3><div class="dropdown"><button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">Dropdown<span class="caret"></span></button><ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"><li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li><li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li><li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li><li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li></ul></div>

输入框

  通过<input></input>标签去创建输入框

<h3>输入框</h3><div class="input-group"><span class="glyphicon glyphicon-user"></span><input type="text" placeholder="username"></div><div class="input-group"><span class="glyphicon glyphicon-lock"></span><input type="password" placeholder="password"></div>

 导航栏

导航栏作为整个网站的指引必不可少。

<h3>导航栏</h3><nav class="navbar navbar-inverse navbar-fixed-top"><div id="navbar" class="navbar-collapse collapse"><ul class="nav navbar-nav"><li class="active"><a href="#">Home</a></li><li><a href="#about">About</a></li><li><a href="#contact">Contact</a></li><li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a><ul class="dropdown-menu" role="menu"><li><a href="#">Action</a></li><li><a href="#">Another action</a></li><li class="divider"></li><li class="dropdown-header">Nav header</li><li><a href="#">Separated link</a></li></ul></li></ul></div><!--/.nav-collapse --></div></nav>

 表单

  人与系统之间数据的传递都需要依靠表单来完成。比如注册/登录信息的提交,查询条件的提交等。用<form></form>标签来创建表单。

<h3>表单</h3><form><div class="form-group"><span class="glyphicon glyphicon-user"></span><input type="email" id="exampleInputEmail1" placeholder="Enter email"></div><div class="form-group"><span class="glyphicon glyphicon-lock"></span><input type="password" id="exampleInputPassword1" placeholder="Password"></div><div class="form-group"><label for="exampleInputFile">File input</label><input type="file" id="exampleInputFile"><p class="help-block">Example block-level help text here.</p></div><div class="checkbox"><label><input type="checkbox"> Check me out</label></div><button type="submit" class="btn btn-default">Submit</button></form>

 警告框

  警告框是系统向用户传达信息和提供指引的重要手段。没有针对警告框的标签,通过bootstrap所提供的样式可以瞬间制作出漂亮的警告框。

  <h3>警告框</h3><div class="alert alert-warning alert-dismissible" role="alert"><button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button><strong>Warning!</strong> Better check yourself, you're not looking too good.</div><div class="alert alert-success" role="alert"><a href="#" class="alert-link">success!</a></div><div class="alert alert-info" role="alert"><a href="#" class="alert-link">info!</a></div><div class="alert alert-warning" role="alert"><a href="#" class="alert-link">warning!</a></div><div class="alert alert-danger" role="alert"><a href="#" class="alert-link">danger!</a></div>

 进度条

  系统的处理过程往往需要用户等待,进度条可以让用户感知到系统的处理过程,从而增加容忍度。

    <h3>进度条</h3><div class="progress"><div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">70%</div></div>

 

转载于:https://www.cnblogs.com/xiaolixiaoxiao/p/5101429.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/459300.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

群晖docker安装cms_Nas码农篇:群晖Docker安装Gitlab

Git大多数码农来说都很熟悉&#xff0c;团队协作开发必备。今天来分享下在群晖Docker上安装gitlab。群晖上安装gitlab有两种方式&#xff0c;一种是直接安装套件中心的gitlab&#xff0c;另一种是在docker中自定义安装。我们这里选择后者&#xff0c;因为这种方式可以安装最新版…

微信红包问题:找出某个出现次数超过红包总数一半的红包的金额(面试题)

1、问题描述 春节期间小明使用微信收到很多个红包&#xff0c;非常开心。在查看领取红包记录时发现&#xff0c;某个红包金额出现的次数超过了红包总数的一半。请帮小明找到该红包金额。写出具体算法思路和代码实现&#xff0c;要求算法尽可能高效。 给定一个红包的金额数组gif…

手把手教你使用CocoaPods管理你的iOS第三方开源类库

手把手教你使用CocoaPods管理你的iOS第三方开源类库 本文转载自&#xff1a;http://kittenyang.com/cocoapods 鉴于我开这个博客的初衷是记录自己平时的技术积累&#xff0c;而我平时又属研究iOS最多&#xff0c;因此这个博客在一定程度上可以说是以iOS技术为主的博客。既然研究…

Find Minimum in Rotated Sorted Array II

Question: https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/ 题目&#xff1a; Follow up for "Find Minimum in Rotated Sorted Array":What if duplicates are allowed? Would this affect the run-time complexity? How and why? 思路…

alt复制选区就会卡 ps_PS入门视频教程笔记整理(二)工具栏介绍一

这几期会慢慢的更&#xff0c;工具栏的相关介绍还有一些简单有趣的应用~1、移动工具和画板工具 (1)移动工具选择相应的图层进行拖拽移动的操作■自动选择&#xff1a;不勾选的话——只有一个图层被选中(移动当前所选择的图层里的内容)勾选的话——无论你点击哪一个地方进行拖拽…

测试Markdown

一级标题 二级标题 四级标题 这是高阶标题&#xff08;和一级标题效果一样&#xff09; 这是次阶标题&#xff08;等同二阶标题&#xff09; 无序列表 *1 *2 *3 无序列表 -1 -2 -3 有序列表 1.你大爷 2.你大伯 3.你叔 4、你哥 这是一个引用 第二个引用 第三个…

MyBatis collection的两种形式——MyBatis学习笔记之九

与association一样&#xff0c;collection元素也有两种形式&#xff0c;现介绍如下&#xff1a; 一、嵌套的resultMap 实际上以前的示例使用的就是这种方法&#xff0c;今天介绍它的另一种写法。还是以教师映射为例&#xff0c;修改映射文件TeacherMapper.xml如下&#xff08;点…

面试题:最常见最有可能考到的C语言面试题汇总

1. 用预处理指令#define声明一个常数&#xff0c;用以表明1年中有多少秒&#xff08;忽略闰年问题&#xff09; #defineSECONDS_PER_YEAR (60 * 60 * 24 * 365)UL&#xff08;无符号长整型&#xff09; 2. 写一个“标准”宏MIN&#xff0c;这个宏输入两个参数并返回较小的一…

int linux 原子操作_linux c++编程之多线程:原子操作如何解决线程冲突

在多线程中操作全局变量一般都会引起线程冲突&#xff0c;为了解决线程冲突&#xff0c;引入原子操作。1.线程冲突#include #include #include #include int g_count 0;void count(void *p){Sleep(100); //do some work//每个线程把g_count加1共10次for (int i 0; i < …

透明明兼容

opacity:0.5; filter:alph(opacity50);转载于:https://www.cnblogs.com/yjhua/p/4580864.html

ORA-00119错误的解决。

今天在启动服务器上的ORACLE时遇到如下错误&#xff1a;SQL> startup;ORA-00119: invalid specification for system parameter LOCAL_LISTENERORA-00132: syntax error or unresolved network name ’LISTENER_ORCL’然后&#xff0c;在网上找了一些资料&#xff0c;解决了…

python查询斐波那契数列通项公式_分享一个神奇的操作系统——斐波那契+MACD,每一波都有20%以上的收益!...

斐波那契数列&#xff0c;又称兔子数列&#xff0c;或者黄金分割数列。指的是这样一个数列&#xff1a;0、1、1、2、3、5、8、13、21……从第三项起&#xff0c;它的每一项都等于前两项的和。为什么是兔子数列?我们假设兔子在出生两个月后&#xff0c;就有繁殖能力&#xff0c…

FPGA 状态机设计

数字系统有两大类有限状态机&#xff08;Finite State Machine&#xff0c;FSM&#xff09;&#xff1a;Moore状态机和Mealy状态机。 Moore状态机 其最大特点是输出只由当前状态确定&#xff0c;与输入无关。Moore状态机的状态图中的每一个状态都包含一个输出信号。这是一个典型…

Cisco堆叠配置步骤+链路聚合实例

步骤:配置堆叠堆叠主: switch 1 priority 15copy run startup-configreload slot 1堆叠备:switch 1 renumber2switch 1priority 15copy run startup-configreload slot 1连接堆叠线缆配置端口聚合interface Port-channel2descriptionxxxxswitchport mode accessswitchport acce…

c++面试常考的知识点汇总

1. 链表和顺序表的优缺点&#xff0c;在什么场合下适合顺序表&#xff0c;什么场合下适合用链表。 1&#xff09;顺序表存储原理&#xff1a;顺序表存储是将数据元素放到一块连续的内存存储空间&#xff0c;存取效率高&#xff0c;速度快。但是不可以动态增加长度优点&#xf…

aimesh node重启_ASSIMP的数据结构

数据结构是对文件的描述&#xff0c;也是我们想要获取的最终产物&#xff0c;一般来说我们会用这个结果映射到我们自己的模型里面去(这样做是为了降低对这个项目的依赖&#xff0c;如果你的模型都用别人的&#xff0c;还搞毛啊)1.aiScene &#xff1a;根节点struct aiScene{uns…

WCF 初识(一)

WCF的前世今生 在.NETFramework 2.0以及前版本中&#xff0c;微软发展了Web Service&#xff08;SOAP with HTTP communication&#xff09;&#xff0c;.NET Remoting&#xff08;TCP/HTTP/Pipeline communication&#xff09;以及基础的Winsock等通信支持。 由于各个通信方法…

iOS 点转成字符串,再字符串转换成点

CGPointFromString(<#NSString *string#>) NSStringFromCGPoint(<#CGPoint point#>)转载于:https://www.cnblogs.com/56ik/p/5111848.html

C/C++关键字解析

2、C/C分别有多少个关键字&#xff1f; 假如别人问某一个关键字是否属于C/C&#xff0c;要能正确的答出来。 1&#xff09;由ANSI标准定义的C语言关键字共32个 auto double int struct break else long switch case enum register typedef char extern return union const flo…

webpack打开项目命令_webpack打包好的页面在项目中怎么运行?

使用webpack打包好了页面和相关的js文件&#xff0c;然后命令输入webpack-dev-server&#xff0c;再浏览器中输入&#xff1a;http://localhost:9090/WebRoot...打开页面能正常的加载样式和数据&#xff0c;无报错。但是本项目是使用Jfnal框架(不知道有没有关系),然后在eclipse…