Sure this is very easy to do with jQuery. Use the window.load
event to determine when all the images are loaded, then show the content:
HTML
<html>
<body>
<div id="loading"></div>
<div id="container">
<img src="http://www.playirishlottery.co.uk/wp-content/uploads/image-2.jpg"/>
</div>
</body>
</html>
jQuery
$(window).load(function() {
//show();
});
function show() {
$('#loading').hide();
$('#container').fadeIn();
};
setTimeout(show, 3000);
In the above example I've used setTimeout
to just demonstrate. In reality your remove this and uncomment the show() in in the .load
function
Fiddle: http://jsfiddle.net/xM6v9/