我为我的元素创建了一个简单的动画,但我得到的不是很酷的效果Uncaught TypeError: Keyframes must be null or an array of keyframes
。
<script>
Polymer({
is: 'marvin-user-entrance',
behaviors: [
Polymer.NeonAnimationRunnerBehavior
],
properties: {
animationConfig: {
value: function() {
return {
'fade-in':[{name: 'fade-in-animation', node: this}],
'fade-out':[{name: 'fade-out-animation', node: this}]
}
}
}
},
animate: function () {
this.playAnimation('fade-out');
},
ready: function () {
this.$.auth.animate();
}
});
</script>
似乎不是Polymer本身的问题,而是在我的代码或网络动画节点的某个地方......