码迷,mamicode.com
首页 > 其他好文 > 详细

基于Bootstrap的执照层,带有加载提示

时间:2018-05-15 14:08:08      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:jquer   class   一起   key   默认   res   body   对话框   stripe   

1、body中的html

<div class="modal fade" id="loadingModal">
    <div style="width: 200px;height:20px; z-index: 20000; position: absolute; text-align: center; left: 50%; top: 50%;margin-left:-100px;margin-top:-10px">
        <div class="progress progress-striped active" style="margin-bottom: 0;">
            <div class="progress-bar" style="width: 100%;"></div>
        </div>
        <h5>正在加载...</h5>
    </div>
</div>

2.jquery 代码

//显示
$("#loadingModal").modal(‘show‘);
//隐藏
$("#loadingModal").modal(‘hide‘);

3、其他设置

//使点击空白处遮罩层不会消失 
$("#loadingModal").modal({backdrop:‘static‘});
//按Tab键遮罩层不会消失 ,默认值为true 
$("#loadingModal").modal({keyboard:false});

//也可以一起运用
//backdrop 为 static 时,点击模态对话框的外部区域不会将其关闭。
//keyboard 为 false 时,按下 Esc 键不会关闭 Modal。
$(‘#loadingModal‘).modal({backdrop: ‘static‘, keyboard: false});

 

基于Bootstrap的执照层,带有加载提示

标签:jquer   class   一起   key   默认   res   body   对话框   stripe   

原文地址:https://www.cnblogs.com/jswang/p/9040499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!