h2Example of creating Modals with Twitter Bootstrap/h2!-- Button trigger modal --
编程学习网为您整理以下代码实例,主要实现:Bootstrap静态Modal插件窗口示例,希望可以帮到各位朋友。
<h2>Example of creating Modals with Twitter bootstrap</h2>
<!-- button trigger modal -->
<button class = "btn btn-primary btn-lg" data-toggle = "modal" data-target = "#myModal">
Launch demo modal
</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">
This Modal Title
</h4>
</div>
<div class = "modal-body">
Add some text here
</div>
<div class = "modal-footer">
<button type = "button" class = "btn btn-default" data-dismiss = "modal">
Close
</button>
<button type = "button" class = "btn btn-primary">
submit changes
</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
沃梦达教程
本文标题为:Bootstrap静态Modal插件窗口示例
猜你喜欢
- Bootstrap单选按钮 1970-01-01
- Bootstrap表格行或单元格 1970-01-01
- Bootstrap navbar-fixed-bottom类使用 1970-01-01
- D3.js selectAll()用法 2022-07-13
- Bootstrap .well类 1970-01-01
- D3.js数组API 1970-01-01
- js过滤所有特殊字符的实例代码 2022-10-16
- Bootstrap .btn-primary类 1970-01-01
- 原始CSS美化select下拉框option示例代码 2022-10-05
- Bootstrap创建下拉菜单 1970-01-01