基于Bootstrap的遮罩层,带有加载提示

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});

 

posted @ 2018-05-15 13:19  js王  阅读(909)  评论(0编辑  收藏  举报