Cita:
Iniciado por mayid 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 originaljQuery.fn.aparece = function(vel,dur) {
this.each(function(i){
var $this = jQuery(this); //Convertimos a jQuery
$this.hide();
var margin = $this.width()/2; //92
var width = $this.width(); //184
var height = $this.height(); //184
j = (i+1)*vel;
setTimeout(function(){
$this.stop().css({width:'0px', height:''+height+'px', marginLeft:''+margin+'px', opacity:'0.5'});
$this.stop().animate({width:''+width+'px', height:''+height+'px', marginLeft:'0px', opacity:'1'},{duration:dur});
},j);
});
}
$(document).ready(function(){
$("img#loslog").aparece(100,300); // velocidad, duracion
});
En el html esta es una parte del ejemplo