這篇文章主要介紹了Bootstrap 過渡效果Transition 模態框(Modal),非常不錯,具有參考借鑒價值,需要的朋友可以參考下
可以切換模態框(Modal)外掛程式的隱藏內容:
1、透過data 屬性:在控制器元素(例如按鈕或連結)上設定屬性data-toggle="modal"
,同時設定data-target="#identifier"
或href="#identifier" rel="external nofollow"
來指定要切換的特定的模態框(帶有id="identifier")
2、透過Javascript:使用此技術,您可以透過簡單的一行Javascript 來呼叫有id="identifier" 的模態方塊:
$('#identifier').modal(options)
<!DOCTYPE html> <html> <head> <title>Bootstrap-模态框Modal</title> <meta charset="utf-8"> <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" > </head> <body> <p class="container"> <h2>创建模态框(Modal)</h2> <!-- 按钮触发模态框 --> <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">开始演示模态框</button> <!-- 模态框(Modal) --> <p class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <p class="modal-dialog"> <p class="modal-content"> <p class="modal-header"> <button type="button" class="close"data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel"> 模态框(Modal)标题 </h4> </p> <p class="modal-body"> 在这里添加一些文本 </p> <p class="modal-footer"> <button type="button" class="btn btn-default"data-dismiss="modal">关闭</button> <button type="button" class="btn btn-primary">提交更改</button> </p> </p><!-- /.modal-content --> </p><!-- /.modal --> </p> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
註:##
aria-labelledby="myModalLabel" aria-hidden="true"官方增強模態框的可訪問性務必為.modal 添加
role="dialog" 和
aria-labelledby="..." 屬性,用於指向模態框的標題欄;為.modal-dialog 添加
aria-hidden="true" 屬性。
JS元件Bootstrap Table表格行拖曳效果實作程式碼#
以上是使用Bootstrap過渡效果Transition模態框(Modal)的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!