animejs - 相对于当前位置移动

时间:2016-09-22 08:59:02

标签: javascript animation css-transitions

我正在尝试相对于animejs中的当前位置移动div

var myAnimation = anime({
   targets: ['.location'],
  translateY: "-300px",
  easing: 'linear',
   delay: function(el, index) {
    return index * 80;
  },
  duration: 500,
  loop: false
});
})

我试过

 translateY: "-=300px",

没有成功。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

尝试通过js获取起点并用括号表示。 像这样:

property: [startpoint, endpoint]