You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1020 B
Plaintext
34 lines
1020 B
Plaintext
<c:set var="path" value="${pageContext.request.contextPath}"/>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<style>
|
|
.loading {
|
|
width: 160px;
|
|
height: 56px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
line-height: 56px;
|
|
color: #fff;
|
|
padding-left: 60px;
|
|
font-size: 15px;
|
|
background: #000;
|
|
opacity: 0.7;
|
|
z-index: 9999;
|
|
-moz-border-radius: 20px;
|
|
-webkit-border-radius: 20px;
|
|
border-radius: 20px;
|
|
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
|
|
}
|
|
</style>
|
|
<div id="loadingModal" class="modal fade" data-keyboard="false"
|
|
data-backdrop="static" data-role="dialog"
|
|
aria-labelledby="myModalLabel" aria-hidden="true">
|
|
<div id="loading" class="loading">加载中。。。</div>
|
|
</div>
|
|
<script>
|
|
$(function(){
|
|
$("#loading").css("background","url("+path+"/static/img/load.gif) no-repeat 10px 50%");
|
|
$('#loadingModal').modal('show');
|
|
})
|
|
</script>
|