我正在研究一个将Polymer1更新为2的项目。在polmyer2中,我们希望摆脱jQuery。我们的项目中有一些动画位置,我们需要进行更改。有谁知道如何使用网络动画API(或其他方式)来传输此jQuery动画代码:
this.shadowRoot.querySelector('#content' + this.id).animate({
marginLeft: -(this.cardWidth * this.cardIndex) + 40
}, "fast");
非常感谢您!