Encontré este código en la web y al aplicarlo me muestra el mensaje inicial correctamente pero las imagens se cargan de a poco como antes...
Si me podes ayudar te lo voy a agradecer muchismo.
Que hago mal ????
Tengo el siguiente codigo dentro del head
Código PHP:
<div ID="waitDiv" style="position:absolute;left:700;top:700;visibility:hidden">
<table cellpadding="6" cellspacing="0" border="1" bgcolor="#FF0000" bordercolor="#FFFFFF">
<tr><td ><font color="#ffffff" face="Verdana" size="1"><b>Cargando </b></font></td></tr>
<tr><td align=center><font color="#000000" face="Verdana" size="3">MiSitio.com</font></td></tr>
<tr><td <font color="#ffffff" face="Verdana" size="1"><b>Aguarde unos segundos.....</b></font></td></tr>
<img src="/images/cargando.gif" border="1">
</td>
</tr></table>
</div>
<SCRIPT>
<!--
var DHTML = (document.getElementById || document.all || document.layers);
function ap_getObj(name) {
if (document.getElementById)
{ return document.getElementById(name).style; }
else if (document.all)
{ return document.all[name].style; }
else if (document.layers)
{ return document.layers[name]; }
}
function ap_showWaitMessage(div,flag) {
if (!DHTML) return;
var x = ap_getObj(div); x.visibility = (flag) ? 'visible':'hidden'
if(! document.getElementById) if(document.layers) x.left=280/2; return true; } ap_showWaitMessage('waitDiv', 3);
//-->
</SCRIPT>
</body>
<SCRIPT language=javascript>
<!--
ap_showWaitMessage('waitDiv', 0);
//-->
</SCRIPT>
</html>
Tambien me puede ser util algun código sencillo que conozcas para que pueda aplicarlo teniendo en cuenta que tengo muy pocos conocimientos de javascript.