<div class="preloader">Loading</div>
.preloader {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #000;
color: #fff;
z-index: 9999999;
}
$(document).ready(function() {
$('.preloader').fadeOut();
});
// либо
$(window).on('load', function () {
$('.preloader').fadeOut();
});