101 lines
2.9 KiB
PHP
Executable File
101 lines
2.9 KiB
PHP
Executable File
<!-- styling -->
|
|
<style type="text/css">
|
|
/*loader*/
|
|
.loader-hgy67vg{
|
|
background-color: rgba(0,0,0,0.1);
|
|
}
|
|
.loader-hgy67vg .modal-content{
|
|
border: none;
|
|
}
|
|
.modal-backdrop {
|
|
background-color: transparent;
|
|
}
|
|
.cntr {
|
|
align-items: center;
|
|
justify-content: center;
|
|
display: flex;
|
|
}
|
|
.loader-hgy67vg .modal-content {
|
|
position: relative;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
pointer-events: auto;
|
|
background-clip: padding-box;
|
|
/*border: 1px solid rgba(0,0,0,.2);*/
|
|
border-radius: .3rem;
|
|
outline: 0;
|
|
background-color: rgba(255,255,255,1) !important;
|
|
padding: 50px 0px 30px 0px;
|
|
border-radius: 10px !important;
|
|
box-shadow: 1px 2px 10px rgba(0,0,0,0.1), -1px -2px 10px rgba(0,0,0,0.1) !important;
|
|
border: none !important;
|
|
}
|
|
.loader-hgy67vg .modal-content .spinner-border {
|
|
display: inline-block;
|
|
width:1rem !important;
|
|
height:1rem !important;
|
|
vertical-align: -.125em;
|
|
border: 0.15em solid currentcolor;
|
|
border-right-color: transparent;
|
|
border-radius: 50%;
|
|
-webkit-animation: .75s linear infinite spinner-border;
|
|
animation: .75s linear infinite spinner-border;
|
|
margin-top: -12px !important;
|
|
}
|
|
.loader-hgy67vg .modal-content .loader-text-ghtyfg{
|
|
font-weight: bold !important;
|
|
/*margin-top: 10px !important;*/
|
|
margin-right: 5px;
|
|
}
|
|
@keyframes spinner-border{
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
/*loader*/
|
|
</style>
|
|
<!-- styling -->
|
|
|
|
<!-- loader -->
|
|
<div class="modal loader-hgy67vg" id="loader_hgy67vg" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1"
|
|
aria-labelledby="loader_hgy67vg_label" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content cntr" style="background-color:transparent;">
|
|
<img src="https://cdnl.iconscout.com/lottie/premium/thumb/download-pdf-file-5583425-4655744.gif" style="width:100px;">
|
|
<h5>Please wait for a while...</h5>
|
|
<div class="cntr">
|
|
<p class="text-center loader-text-ghtyfg"></p>
|
|
<span class="spinner-border text-dark"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- loader -->
|
|
|
|
<!-- scripting -->
|
|
<script type="text/javascript">
|
|
function callLoader_hgy67vg(stat=null,msg=null){
|
|
if(stat==null){
|
|
$('.loader-hgy67vg').modal('toggle');
|
|
}else{
|
|
if(stat){
|
|
// $('.loader-hgy67vg').modal('show');
|
|
$('.loader-hgy67vg').show();
|
|
}else{
|
|
$('.loader-hgy67vg').hide();
|
|
}
|
|
}
|
|
|
|
if(msg==null || msg==''){
|
|
$('.loader-hgy67vg').find('.loader-text-ghtyfg').html('');
|
|
}else{
|
|
$('.loader-hgy67vg').find('.loader-text-ghtyfg').html(msg);
|
|
}
|
|
|
|
}
|
|
</script>
|
|
<!-- scripting --> |