<div id='preloader'>
<img src="public/Splash_animation.gif" alt="preloader">
</div><script>
$(document).ready(function() {
$('#preloader').fadeOut(200000);
});
</script>html, body {
overflow: hidden
}$(document).ready(function() {
setTimeout(function() {
$('html, body').css('overflow', 'scroll');
$('#preloader').fadeOut();
}, 20000);
});