我正在制作一种矩阵风格的背景,图像会随机下拉。我想将除法传递给一个函数作为启动动画的参数。我无法弄清楚如何做到这一点。我不认为为每个下拉的图形编写相同的函数是一种好的做法。这就是我所拥有的——
<div id="l_0" class="drop_leds">
</div>
<div id="l_1" class="drop_leds">
</div>
<div id="l_2" class="drop_leds">
</div>
<div id="l_3" class="drop_leds">
</div>
$(document).ready(function(){
function row_01(id){
var movePixAmount = 10;
setInterval(function(){
$(id).animate({ marginTop: movePixAmount+"px" }, 10);
movePixAmount = movePixAmount +10;
if(movePixAmount === 600){
movePixAmount = 0;
};
},
100);//inter
};
row_01("#l_0")
感谢您的任何帮助