[]js项目使用缓动类Tween报错
代码如下
var Tww = laya.utils.Tween;
to0();
function to0()
{
Tww.to(this.lis, {
alpha: 0.5
}, 500, null, Handler.create(this, to1));
}
function to1()
{
Tww.to(this.lis, {
alpha: 1
}, 500, null, Handler.create(this, to0));
}
在AS中是没有问题的。
var Tww = laya.utils.Tween;
to0();
function to0()
{
Tww.to(this.lis, {
alpha: 0.5
}, 500, null, Handler.create(this, to1));
}
function to1()
{
Tww.to(this.lis, {
alpha: 1
}, 500, null, Handler.create(this, to0));
}
在AS中是没有问题的。
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
Aar0n
赞同来自: