要素の単純なアニメーションを作成しましたが、クールな効果の代わりに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自体の問題ではないようですが、私のコードやWebアニメーションノードのどこかに...