我有几个产品在一个 div 中并排排列在一起,我正在使用这个脚本一个一个地隐藏它们。
在某个时候,它们都消失了,我想让它们重新出现。我尝试了一些 .show,但我可能对展示位置有误。
有人可以看看,看看需要做什么才能让脚本按预期工作吗?
<script>
$(document).ready (function() {
"$('.add1').each(function(index) {
setTimeout(function(el) {
el.hide('slow');
}, index * 2000, $(this));
});
});
</script>