Bootstrap JavaScript插件:模态框 (modal.js)

简介: Bootstrap 框架

作者:WangMin
格言:努力做好自己喜欢的每一件事

banner.png

注意:

  • 模态框不支持嵌套,需要嵌套模态框的话,只能自己手动实现。
  • 模态框包含的html最好尽量作为body的直接子元素,以避免其他组件影响模态框的展现和功能。
  • 弹出层出来以后,页面的滚动条会被覆盖。

模态框主体结构包含了模态框的头、体和一组放置于底部的按钮 :

  • modal 弹出层父级
  • modal-dialog 弹出层
  • modal-content 弹出层的内容区域
  • modal-header 弹出层的头部区域
  • modal-body 弹出层的主体区域
  • modal-footer 弹出层的底部区域
  • fade 让弹出层有一个运动的效果,加给弹出层父级

基本结构代码如下:

<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>
           </div>
           <div class="modal-body">
                code。。。
           </div><!--modal-body-->
           <div class="modal-footer">
               <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> 
           </div>
<!--modal-footer-->
        </div><!-- modal-content -->
     </div><!--modal-dialog -->
</div>

1.png

动态实例

点击下面的按钮即可通过 JavaScript 启动一个模态框。在模态框之前添加一个按钮(button),还需要给button添加data-toggle="modal" 和 data-target="目标模态框ID"(指定要切换的特定的模态框) 来启动模态框效果,模态框将从上到下、逐渐浮现到页面前。代码如下:

<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
    开始演示模态框
</button>
<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>
           </div>
           <div class="modal-body">
                code。。。
           </div><!--modal-body-->
           <div class="modal-footer">
               <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> 
           </div>
<!--modal-footer-->
        </div><!-- modal-content -->
     </div><!--modal-dialog -->
</div>

注意:增强模态框的可访问性。务必为.modal添加role="dialog"aria-labelledby="..."属性,用于指向模态框的标题栏(modal-title);为.modal-dialog添加aria-hidden="true"属性。


模态框可选尺寸

模态框提供了两个可选尺寸,通过为.modal-dialog增加一个样式调整类实现。
大尺寸模态框(modal-lg):

<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
    开始演示模态框
</button>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
           <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
             ×
            </button>
           </div>
           <div class="modal-body">
                code。。。
           </div><!--modal-body-->
           <div class="modal-footer">
               <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> 
           </div>
<!--modal-footer-->
        </div><!-- modal-content -->
     </div><!--modal-dialog -->
</div>

2.png

小尺寸模态框(modal-sm):

<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
    开始演示模态框
</button>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-sm">
        <div class="modal-content">
           <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
             ×
            </button>
           </div>
           <div class="modal-body">
                code。。。
           </div><!--modal-body-->
           <div class="modal-footer">
               <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> 
           </div>
<!--modal-footer-->
        </div><!-- modal-content -->
     </div><!--modal-dialog -->
</div>

3.png

实际效果需要自己实际操作并在浏览器上展示。


禁止动画效果
如果不需要模态框弹出时的动画效果(淡入淡出效果),删掉.fade类就可以了。


要利用模态中的引导网格系统(栅格系统),只需在.modal主体(modal-body)中嵌套.rows,然后使用普通的网格系统类;同样的,在模态框中使用表单,只需在.modal主体(modal-body)中嵌套form表单。

用法

通过 data 属性或 JavaScript 调用模态框插件,可以根据需要动态展示隐藏的内容。模态框弹出时还会为<body>元素添加.modal-open类,从而覆盖页面默认的滚动行为,并且还会自动生成一个.modal-backdrop元素用于提供一个可点击的区域,点击此区域就即可关闭模态框。

  • 通过 data 属性:在控制器元素(比如按钮或者链接)上设置属性 data-toggle=”modal”,同时设置 data-target=”#identifier” 或 href=”#identifier” 来指定要切换的特定的模态框(带有 id=”identifier”)。例如:
    <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
      开始演示模态框
    </button>
    
  • 通过 JavaScript 调用:只需一行 JavaScript 代码,即可通过元素的 idmyModal调用模态框:

    $('#identifier').modal(options)
    

    参数

  • backdrop: true/false/'static' 背景遮罩的显示与否

  • keyboard: true/false 键盘上的esc键可否关闭模态框
  • show:true/false 模态框是否初始好了就立即显示
  • remote: path 用jquery的load方法加载指定url的内容到.modal-content

方法

$('#myModal').modal(option); //显示模态框 
$('#myModal').modal('toggle'); //切换模态框的显示和隐藏 
$('#myModal').modal('show'); //显示
 $('#myModal').modal('hide'); //隐藏

事件

Bootstrap 的模态框类提供了一些事件用于监听并执行你自己的代码。

事件类型 描述
show.bs.modal show方法调用之后立即触发该事件。如果是通过点击某个作为触发器的元素,则此元素可以通过事件的relatedTarget属性进行访问。
shown.bs.modal 此事件在模态框已经显示出来(并且同时在 CSS 过渡效果完成)之后被触发。如果是通过点击某个作为触发器的元素,则此元素可以通过事件的relatedTarget属性进行访问。
hide.bs.modal hide方法调用之后立即触发该事件。
hidden.bs.modal 此事件在模态框被隐藏(并且同时在 CSS 过渡效果完成)之后被触发。
loaded.bs.modal 远端的数据源加载完数据之后触发该事件。

就先分享到这里!! :smile: 后续继续更新!!

目录
相关文章
|
5天前
|
JavaScript 容器
带方向感知功能的js图片遮罩层插件
带方向感知功能的js图片遮罩层插件
|
3天前
|
资源调度 前端开发 JavaScript
Bootstrap日期选择器插件bootstrap-datepicker
Bootstrap日期选择器插件bootstrap-datepicker
27 12
|
14天前
|
JavaScript 前端开发
基于SVG的js圆形菜单插件
这是一款基于SVG的js圆形菜单插件。该js圆形菜单插件可以生成漂亮的圆形菜单效果,支持二级菜单,支持使用鼠标滚动切换菜单
41 16
|
10天前
|
JavaScript
时尚简洁的js轮播图特效插件
这是一款时尚简洁的js轮播图特效插件。该轮播图采用es6语法制作,底部带缩略图和描述信息。图片和描述信息在切换时同步滑动。
|
7天前
|
JavaScript 前端开发 异构计算
兼容移动手机的js拖拽插件Draggin.js
兼容移动手机的js拖拽插件Draggin.js
17 1
|
8天前
|
前端开发 JavaScript
bootstrap右键菜单插件
这是一款基于bootstrap的jquery右键菜单插件。该bootstrap右键菜单使用Bootstrap dropdown组件来制作,并通过tether插件进行定位,具有多级菜单,灵活,响应式等特点
|
24天前
|
Web App开发 JavaScript iOS开发
JS弹出式QQ在线客服插件
JS弹出式QQ在线客服插件
25 6
|
26天前
|
Web App开发 JavaScript 前端开发
高性能的纯Js滚动条美化插件smooth-scrollbar
smooth-scrollbar是一款高性能的纯JavaScript滚动条美化插件。该滚动条为现代浏览器而制作,它具有高性能,自由配置,平滑滚动等特点,支持各种现代桌面浏览器和手机设备。
|
存储 JavaScript 前端开发
JavaScript与PHP中正则
有个在线调试正则的工具,点击查看工具。下面的所有示例代码,都可以在codepen上查看到。
JavaScript与PHP中正则
|
JavaScript 前端开发 PHP