JAVASCRIPT
jQuery(document).ready(function($) {
$('#fakeloader').css(
{
'position':'fixed',
'top':'0',
'left':'0',
'width':'100%',
'height':'100%',
'background-color': $('#fakeloader').attr("data-color"),
'z-index':'999999'
}
).prepend(
'<img src="' + $('#fakeloader').attr("data-gif") + '">'
).addClass(
'flex justify-center align-items-center'
);
$('#fakeloader img').css(
{
'width': $('#fakeloader').attr("data-size") + 'px',
'height':'auto'
}
);
function hideFakeloader () {
$('#fakeloader').fadeOut(700, 'swing', function() {
$(this).remove();
});
}
setTimeout(hideFakeloader, $('#fakeloader').attr("data-time") * 1000);
});