我有一个 div 在循环中移动(使用 jquery)。我能够将 x,y 位置写入页面;但是,只有初始值被写入页面。有没有办法在 div 移动时更新值?
var sun = $j(".sun");
var position = sun.position();
$j(".sun").circulate({
speed: 3600,
width: Wwidth,
height: Wwidth,
loop: true,
zIndexValues: [1000, 1000, 1000, 1000]
});
console.log('x: ' + position.left + ' y: ' + position.top);