-1
在我的聚合物元件我有這樣的:運行高分子功能
Polymer(
{
is: "paperspinner-dom",
behaviors: [Polymer.NeonAnimationRunnerBehavior],
properties:
{
opened:
{
type: Boolean
},
animationConfig:
{
value: function()
{
return {
'showSpinner':
{
name: 'bounce-in-animation',
node: this,
timing:
{
duration: 1000
}
},
'hideSpinner':
{
name: 'fade-out-animation',
node: this
}
}
}
}
},
runSpinnerAnimation: function(){
this.playAnimation('showSpinner');
}
});
,現在我想知道我怎麼可以運行任何其他正常的JavaScript功能runSpinnerAnimation。或者我可以從其他JavaScript文件運行playAnimation功能嗎?
尼爾斯
你有沒有嘗試任何事情* *張貼在這裏過嗎? –
是的,但沒有工作。 Günter的想法也不起作用。 –
然後請發佈你已經嘗試過的,否則它看起來好像你沒有努力解決你自己的問題。 –