Bootstrap实现模态框效果

一、模态框(Modal)是覆盖在父窗体上的子窗体。通常,目的是显示来自一个单独的源的内容,可以在不离开父窗体的情况下有一些互动。子窗体可提供信息、交互等。

二、如果想要单独引用该插件的功能,那么您需要引用 modal.js。或者可以引用 bootstrap.js 或压缩版的 bootstrap.min.js

引入之后直接上代码示例:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 模态框(Modal)插件</title> <link 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> <h2>创建模态框(Modal)</h2> <!-- 按钮触发模态框::是指定class为"按钮的加大primary"样式 data-toggle="modal":应该是模态框的固定写法,只能为modal,至少自己试验发现是这样的 data-target="#myModal":通过选择器指向 的元素,也就是要显示和隐藏的模态框目标 --> <button data-toggle="modal" data-target="#myModal"> 开始演示模态框 </button> <!-- 模态框(Modal) --> <!--: modal——用来把div识别成模态框 fade——当模态框被切换时,内容会淡入淡出:就是被指定为上面说的data-target属性选择的元素 tabindex:属性规定元素的 tab 键控制次序 aria-labelledby="myModalLabel":引用模态框的标题(去掉影响不大) aria-hidden:="true":设置模态框不可见,等到点击按钮之后显示 --> <div tabindex="1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div> <div> <div> <!-- data-dismiss="modal":加上这个,使得点击该button时会关闭模态框,下面的关闭按钮也是一样加了这个属性 --> <button type="button" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4> 模态框(Modal)标题 </h4> </div> <div> <input type="text" placeholder="输入......"> </div> <div> <button type="button" data-dismiss="modal">关闭</button> <button type="button">提交更改</button> </div> </div><!-- /.modal-content --> </div><!-- /.modal --> </div> </body> </html>

运行效果图如下:

Bootstrap实现模态框效果

如果大家还想深入学习,可以点击这里进行学习,再为大家附3个精彩的专题:

Bootstrap学习教程

Bootstrap实战教程

Bootstrap插件使用教程

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c9e4ed07e506e1c586eae9c0671b6899.html