You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

37 lines
732 B

<style>
.modal-loading-custom {
display: none;
position: fixed;
z-index: 1000;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(255, 255, 255, .8) url('https://i.stack.imgur.com/h6viz.gif') 50% 50% no-repeat;
}
body.loading {
overflow: hidden;
}
body.loading .modal-loading-custom {
display: block;
}
body {
background-color: #e1e1e1;
}
</style>
<div class="modal-loading-custom">
<!-- Place at bottom of page -->
</div>
<script>
function showLoading() {
$('body').addClass('loading');
}
function hideLoading() {
$('body').removeClass('loading');
}
</script>