可以用 z-index 为图像设置动画,比如不透明度和其他?!
因为我做错了
On click get id clicked and to the following to the img id equal to clicked id
$('#gallery img').eq(atrb-1).css("z-index",z++).slideUp('slow');
但它显示图像的 z 指数较低
我怎么能避免呢?
是的,在javascript的开头问题不是z-index,而是z-index jquery动画,如fade等
$("#gallery img").each(function() {
z++;
$(this).css('z-index', z).attr('id',z);//set z index and id
$('#bar').append("<a href='#' id="+z+"/>");
});
当我单击#bar 中的链接时,链接 id 的图像位于其他人的前面
找到了答案:它是 fadeToggle 隐藏所有元素并再次使用它来淡入隐藏元素:)))