Muchas gracias Cherivera! Funciona de maravilla.
http://www.ferremundo.com.ar/marcas.php
Comparto el efecto que dicho sea de paso, modestamente me salió espectacular.
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
});
Código CSS:
Ver original.loslog{Z-INDEX: 3; POSITION: absolute; border: solid 1px #cccccc; display:none }
#marcas ul{list-style:none; margin:0; padding:0; }
#marcas li{ height:60px; width:152px; margin: 0px 14px 28px 14px; padding:0; float:left; }