Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/10/2009, 13:35
Avatar de destor77
destor77
 
Fecha de Ingreso: noviembre-2004
Ubicación: Gálvez, Santa Fe, Argentina
Mensajes: 2.654
Antigüedad: 20 años, 1 mes
Puntos: 43
no funciona "cargando...."

Buenas, estoy intentando hacer el famoso "cargando...." pero no logro hacerlo andar como quiero, ahora lo único que haces es mostrarme el efecto siempre, y no desaparece ni me oculta toda la pagina. En que le estoy errando jeje

el codigo del js es:
Código javascripts:
Ver original
  1. $(document).ready(function(){
  2.    $("#preloader").css("display","none");
  3.    $("#wrapper").css("display","block");
  4. });
  5. $(function() {                  
  6.             $("#dialog").dialog({
  7.                 bgiframe: true,
  8.                 autoOpen: false,
  9.                 resizable: false,
  10.                 height:140,
  11.                 modal: true,
  12.                 overlay: {
  13.                     backgroundColor: '#000',
  14.                     opacity: 0.5
  15.                 },
  16.                 buttons: {
  17.                     'Si': function() {
  18.                         var url =$('#delete').attr("href");                    
  19.                         location.href=url;                     
  20.                     },
  21.                     'Cancelar': function() {
  22.                         $(this).dialog('close');
  23.                     }
  24.                 }
  25.             });                    
  26.  
  27.             $('#delete').bind("click", function(){  
  28.                $('#dialog').dialog('open');  
  29.                return false;
  30.             });  
  31.            
  32.             $('#mensaje').click(function(){              
  33.                  $("#mensaje").slideUp();          
  34.             });
  35.            
  36.            
  37. });

mi css es:
Código css:
Ver original
  1. /* Basic  ---------------------------------------- */
  2.  
  3. .clear { clear: both; }
  4.  
  5. body {
  6.     background: white;
  7.     font-family: Arial, Helvetica, sans-serif;
  8.     font-size: 12px;
  9.     color: #646464;
  10.     text-align: center;
  11. }
  12.  
  13. #wrapper {
  14.     text-align: left;
  15.     width: 930px;
  16.     margin: 0 auto;
  17.     display: none;
  18. }
  19.  
  20. #preloader{                            
  21.     top: 0; right: 10px;
  22.     position:relative;
  23.     z-index:10;
  24.     width: 132px; height: 38px;
  25.     background: url(../images/loading.gif) no-repeat;
  26.     cursor: wait;
  27.     text-shadow: 0px 1px 0px #fefefe;  //webkit
  28.                              
  29. }

y mi html es:
Código html:
Ver original
  1. <?php
  2. /**
  3. * header.php
  4. */
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  9. <title>Administración - Websa100</title>
  10. <link rel="shortcut icon" href="images/favicon.ico" />
  11. <!-- CSS -->
  12. <link href="<? echo CSS;?>transdmin.css" rel="stylesheet" type="text/css" media="screen" />
  13. <!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="<? echo CCS;?>ie6.css" /><![endif]-->
  14. <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="<? echo CS;?>ie7.css" /><![endif]-->
  15.  
  16. <!-- JavaScripts-->
  17. <script type="text/javascript" src="<? echo JS;?>jquery.js"></script>
  18. <script type="text/javascript" src="<? echo JS;?>jNice.js"></script>
  19.  
  20. <link type="text/css" href="<? echo CSS;?>ui-lightness/jquery-ui-1.7.2.custom.css" rel="stylesheet" /> 
  21. <script type="text/javascript" src="<? echo JS;?>jquery-1.3.2.min.js"></script>
  22. <script type="text/javascript" src="<? echo JS;?>jquery-ui-1.7.2.custom.min.js"></script>
  23. <script type="text/javascript" src="<? echo JS;?>ui.dialog.js" ></script>  
  24. <script type="text/javascript" src="<? echo JS;?>ui.core.js" ></script>  
  25. <script type="text/javascript" src="<? echo JS;?>funciones.js" ></script>
  26.  
  27.  
  28.  
  29. </head>
  30.  
  31.     <div id="preloader">Cargando... Espere Por Favor</div>
  32.     <div id="wrapper">         
  33.         <!-- h1 tag stays for the logo, you can use the a tag for linking the index page -->
  34.         <h1><a href="#" title="Websa100"><span>Websa100</span></a></h1>

desde ya muchas gracias