Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/04/2010, 16:31
AndresMtti
 
Fecha de Ingreso: agosto-2003
Mensajes: 9
Antigüedad: 21 años, 3 meses
Puntos: 0
Respuesta: plugin jquery no funciona en IE7

Cita:
Iniciado por mayid Ver Mensaje
Muy lindo efecto.

En IE8 se ve bien.

En ie7 no.

Pero es dificil comentar la pagina. Te animas a publicar aquí directamente el codigo? Así lo analizamos.
Aqui pongo el código del javascript

Código Javascript:
Ver original
  1. jQuery.fn.aparece = function(vel,dur) {
  2.     this.each(function(i){
  3.         var $this = jQuery(this); //Convertimos a jQuery
  4.         $this.hide();
  5.         var margin = $this.width()/2; //92
  6.         var width  = $this.width(); //184
  7.         var height = $this.height(); //184
  8.         j = (i+1)*vel;
  9.         setTimeout(function(){
  10.             $this.stop().css({width:'0px', height:''+height+'px', marginLeft:''+margin+'px', opacity:'0.5'});
  11.             $this.stop().animate({width:''+width+'px', height:''+height+'px', marginLeft:'0px', opacity:'1'},{duration:dur});
  12.         },j);
  13.     });
  14. }
  15.  
  16. $(document).ready(function(){
  17.         $("img#loslog").aparece(100,300); // velocidad, duracion
  18. });

En el html esta es una parte del ejemplo
Código HTML:
Ver original
  1. <li><img id="loslog" src="marcas/3m.gif"></li>