我将如何使用 jQuery 从索引 999 开始逐步减少一组 div 元素的 z-index。
我已经看到其他关于逐步减少 z-index 的问题,但它没有第一个元素的起始 z-index。该帖子的修改代码如下:
$('div.count').each(function(i){
$(this).css('z-index', $(this).length-i);
});
最终结果应如下所示:
<div class="count" style="z-index:999;"></div>
<div class="count" style="z-index:998;"></div>
<div class="count" style="z-index:997;"></div>