[]老虎转轮的问题

新手!
我做了个简单的老虎机,现在是用list来做的,目前转动的方法方法:

Laya.timer.frameLoop循环执行一个方法,不知道有没更优雅的方法呀

//开始转动
function onBtnClick(){
Laya.timer.frameLoop(1, this, scroller);

}

//转动轮子方法
var time = 30, //默认转动间隔
ih = 0, //初始滚动高度
speed = 5, //速度
boxHeight = this.box.height * 2; // 盒子高度

function scroller(type){
//如果滚动到了底部,则从新开始
if(ih>boxHeight){
ih = 0;
}
seft.list1.scrollBar.value = ih;
ih += speed;
}
QQ截图20180326100245.png
已邀请:

qian

赞同来自:

谢谢分享
希望其他开发者能多给你点意见

熊猫大侠

赞同来自:

用list写 想法不错

要回复问题请先

商务合作
商务合作