尝试在我的 while 循环中使用动画运行我的函数,在该动画中我移动方块,我只希望它运行一次。不要让它工作。如果我使用 setInterval 它只会动画多次。而我现在拥有它的方式根本没有动画。这就是它现在的样子。欣赏一些提示。谢谢!
编辑 - 根据计数 ID,方块被动画到不同的位置。
<?php
...
$count = 0;
while($rows = mysql_fetch_array($data)){ //many rows
$count = $count + 1
$id= $rows['id']; //different id's for each row
?>
<script>
var ID = '<?php echo $id; ?>';
var count = '<?php echo $count; ?>';
</script>
<div id="squares" style="height:50px; width:50px; position:relative; background:black;" >
<script>
document.getElementById('squares').id = ID; //make div id "squares" to ID
//So here the it doesn't work.
function(){
if(count == 1){
$('#' + ID).animate({left: (700), top: (300)}, 2000);
$('#' + ID).animate({left: (300), top: (500)}, 2000);
}
if(count == 2){
$('#' + ID).animate({left: (100), top: (400)}, 2000);
$('#' + ID).animate({left: (100), top: (800)}, 2000);
}
}
</script>
<?php
}
?>