[]老虎转轮的问题
新手!
我做了个简单的老虎机,现在是用list来做的,目前转动的方法方法:
Laya.timer.frameLoop循环执行一个方法,不知道有没更优雅的方法呀
我做了个简单的老虎机,现在是用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;
}
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
qian
赞同来自:
希望其他开发者能多给你点意见
赞
熊猫大侠
赞同来自: