|    
			
				07/05/2012, 14:51
			
			
			  | 
  |   |  | Colaborador |  |  Fecha de Ingreso: junio-2008 
						Mensajes: 5.032
					 Antigüedad: 17 años, 4 meses Puntos: 1012 |  | 
  |  Respuesta: Poner "animación" mientras se carga una página  
  prueba con esto  Cita:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Documento sin título</title>
 <style type="text/css">
 * {
 margin: 0;
 padding: 0;
 border: none;
 position: relative;
 }
 
 html, body {
 width: 100%;
 height: 100%;
 }
 
 #fondo {
 display: block;
 background-color: #111;
 width: 100%;
 min-height: 100%;
 height: auto !important;
 z-index: 99;
 position: fixed;
 }
 
 #imagen {
 font: bold 13px Helvetica, Arial, sans-serif;
 color: #fff;
 text-align: center;
 width: 300px;
 height: 20px;
 position: absolute;
 top: 52%;
 left: 40%;
 }
 </style>
 <script type="text/javascript">
 function fnc()    {
 document.getElementById('fondo').style.display = 'none';
 }
 
 window.onload = function() {fnc();};
 </script>
 </head>
 <body>
 <div id="fondo"><div id="imagen">CARGANDO ....</div></div>
 
 
 <?php
 $cin = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 ,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,3  5,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50);
 
 for($x=0; $x<46; $x++){
 for($a=1; $a<47; $a++){
 if($x<$a) {
 for($b=2; $b<48; $b++){
 if($a<$b){
 for($c=3; $c<49; $c++){
 if($b<$c){
 for($d=4; $d<50; $d++){
 if($c<$d){
 echo $cin[$x]."-".$cin[$a]."-".$cin[$b]."-".$cin[$c]."-".$cin[$d]."+++";
 }}}}}}}}}
 ?>
 
 </body>
 </html>
 te lo dejo en php porque la conversión es sencilla. como es un proceso largo, pruebalo en chrome.  
la idea es usar una capa (100% x 100%) y cuando la página esté cargada, ocultarla     |