我正在尝试相对于animejs中的当前位置移动div
var myAnimation = anime({
targets: ['.location'],
translateY: "-300px",
easing: 'linear',
delay: function(el, index) {
return index * 80;
},
duration: 500,
loop: false
});
})
我试过
translateY: "-=300px",
没有成功。有什么想法吗?
答案 0 :(得分:1)
尝试通过js获取起点并用括号表示。 像这样:
property: [startpoint, endpoint]