我在Edge Animate工作。
我正在尝试将符号放在两个不同的位置,当我生成符号时,我总是缺少一个符号。
此外,我希望能够将前3个数字放在他们自己的容器中 - 如果数字是2则应该放在location1[1]
中,如果数字是8,则应该放在{{1 }}。我不确定如何才能做到这一点。
数字数组包含数字1,2,3,4,5,6,7,8,9,10的符号名称。
location1[7]
是一个数组,其中包含每个可能的3个数字的容器名称。
其余的容器将成为可放置的。
location1
是一个数组,其中包含剩余数字的容器名称,这些数字将成为可拖动数据。
这是我的代码:
location2
答案 0 :(得分:0)
我不熟悉动画包,但这可能会指向正确的方向。使用div作为容器(从for循环生成每个div id)的小提琴here。这是主要的一点:
for (i=0;i<3;i++){
$('#divOne').append('<div id = ' + location1[i] + '>' + placedNumbers[i] + '</div>');
}
// place the rest of the numbers in the bottom list
for (i=3;i<10;i++){
$('#divTwo').append('<div id = ' + location2[i] + '>' + placedNumbers[i] + '</div>');
}