Подскажите, пожалуйста, как правильно проанимировать два div одного класса? Так не очень получается:
var pos = 0;
var arr = document.getElementsByClassName('squre');
var t = setInterval(move, 10);
function move(arr) {
if(pos >= 650) {
pos=0;
}
else {
pos += 1;
arr[0].style.top = pos + "px";
arr[1].style.top = pos + "px";
}
}
move(arr);