博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
web前端基础之Bootstrap(三) - 插件
阅读量:4943 次
发布时间:2019-06-11

本文共 4697 字,大约阅读时间需要 15 分钟。

模态框

放在body内的直接子元素

弹出方式

 1.通过 data 属性

  data-toggle="modal" data-target="#myModal"

  按钮的data-target要与模态框的id建立关联

2.通过 JS代码

通过JS代码实现模态框的显示与隐藏

- $("#myModal").modal("show")  --> 显示出来- $("#myModal").modal("hide)   --> 隐藏

 

模态框大小

在模态框的第一子类中添加  model-lg,model-md,model-sm,model-xs

 模态框结构

一个模态框包括

1. .modal-header 2. .modal-body 3. .modal-footer

 

样式

 

模态框动画

模态框动画:在模态框的父类中添加 fade

 若模态框类中没有fade则模态框不会有一个缓慢的弹出过程,只会立即跳出

 模态框参数

1.backdrop:遮罩层参数  --->   true/false/static  

  默认为true 显示灰色遮罩层,false为去掉遮罩层,static为点击空白不关闭模态框

 

2.keyboard: 按键Esc  --->   true/false

  默认为true 按esc退出,false为按esc不退出模态框

 

3.模态框中的参数可以是多个值

 

模态框事件

 

1.模态框显示之前,模态框显示之后

$(document).ready(function () {    $('#myModal').on('show.bs.modal', function (e) {    // do something...    alert("我让模态框显示出来,但是它还没来得及显示");    });    $('#myModal').on('shown.bs.modal', function (e) {                 // do something...                alert("我让模态框显示出来,现在它已经显示出来了");    })
代码

2.模态框隐藏前,隐藏后

    
模态框示例
。。。。
示例

轮播图

$(document).ready(function () {    $('#myModal').on('show.bs.modal', function (e) {    // do something...    alert("我让模态框显示出来,但是它还没来得及显示");    });    $('#myModal').on('shown.bs.modal', function (e) {                 // do something...                alert("我让模态框显示出来,现在它已经显示出来了");    })

 轮播图结构

 

轮播时间间隔

代码
    
轮播图示例
示例

左侧下拉菜单

 菜单结构

 

菜单点击与文本关系

 

    
Title
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
示例

 

前端插件

 FontAwesome字体插件

字体样式多,图标多

官网      

下载后 使用fontawesome文件中的css文件与fonts文件,放到自己文件中

 代码导入结构

    
Dashboard Template for Bootstrap
Loading...
fa-twitter on fa-square-o
fa-flag on fa-circle
示例

SweetAlert2 插件

各种登录框,弹出框

官网 · 

下载后,把sweetalert2文件拷入文件中

 

代码导入结构

 

    
sweetalert示例
示例

 

转载于:https://www.cnblogs.com/chengdajing/articles/9238328.html

你可能感兴趣的文章
向ASP.NET自定义控件中嵌入CSS资源
查看>>
SpringMVC DeferedResult和servlet3.1 AsyncContext异步请求
查看>>
CSRF攻击与防御
查看>>
利用ab压力工具对服务器进行压力测试
查看>>
"CSRF token missing or incorrect."的解决方法.
查看>>
Jquery中ajax加载提示插件blickUI
查看>>
Tomcat 启动报错 did not find a matching property.
查看>>
Fast DFS分布式文件存储系统
查看>>
选择排序算法---直接选择排序和堆排序
查看>>
读文件
查看>>
The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine.
查看>>
20172330 2017-2018-1 《Java程序设计》第五周学习总结
查看>>
目标检测入门
查看>>
React js ReactDOM.render 语句后面不能加分号
查看>>
iOS开发常用第三方库
查看>>
堆排序法---题目
查看>>
Js 怎么遍历json对象所有key及根据动态key获取值
查看>>
findStr
查看>>
使用工具 httpie调试API接口 - 转
查看>>
isa指针
查看>>