我有这个:
this.slides[this.slideIndex].set('tween', {duration: '3000'});
this.slides[this.slideIndex].tween('opacity', '1');
Run Code Online (Sandbox Code Playgroud)
例如,我可以在效果完成后显示警告信息?
您可以使用
this.slides[this.slideIndex].set('tween',
{
duration: '3000',
onComplete: function() {alert('msg');}
}
);
Run Code Online (Sandbox Code Playgroud)