我对 js 还是很陌生,我正在尝试将 bonsai.js 放入主干应用程序中。
我在这里遵循本指南: https ://github.com/iamdustan/bonsai-demos ,并尝试通过将动画放入名为 的单独文件中来“分离事物” hero-animation.js
,但我Uncaught TypeError: Illegal constructor
在第一行得到一个hero-animation.js
这在我的主干路由器中被调用,并且工作正常......
homeAnimation: function() {
bonsai.run(document.getElementById('heroContent'), {
url: 'hero-animation.js',
width: 500,
height: 400
});
}
这是我在 hero-animation.js 中的内容,导致第 1 行出现错误:
var rect = new Rect(0, 0, 200, 200);
rect
.fill('random')
.addTo(stage)
.attr({
x: stage.width - rect.attr('width'),
y: stage.width - rect.attr('height')
})
.animate('0.5s', {
x: 0,
y: 0
});