大约有 334 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)
Laya_社区(305) Laya3.0_api(9) laya_api(5) Laya2.0_api(5) Laya2.0_文档(3) Laya2.0_示例(3) Laya3.0_文档(2) Laya_示例(2)
list组件改变位置后在改变数据源的长度,会导致index超过数据源长度 list组件的数据源的长度有3项,然后改变list组件的位置,在改变list的数据源长度,长度变小(此处变1项),会导致list的renderhandler还是以长度3来计算,导致index越...
来源: Laya_社区 发布时间: 20190919
在代码中我调用了list里的tweenTo(index)方法 请问这个问题,怎么解决,下面有图可看 ......在代码中我调用了list里的tweenTo(index)方法,当index足够大时(30以上),list界面就会是个空白,当我用鼠标拖动list时,那些图片就会渲染出...
来源: Laya_社区 发布时间: 20180723
...dler(this, updateItem); return list; } function updateItem(cell, index) { console.log(index); // console.log(cell.dataSource); cell.setImg(cell.dataSource[index]); cell.on(Laya.Event.CLICK, function() { console.log("click") }) } fun...
来源: Laya_社区 发布时间: 20180724
list 下含有checkbox,我选中index为0的checkbox,第8,16,24的checkbox也会被选中,是怎么回事呢? list 下含有checkbox,我选中index为0的checkbox,第8,16,24的checkbox也会被选中,是怎么回事呢? 如图,我只选中了0号checkbox,list的代码就是这...
来源: Laya_社区 发布时间: 20171219
list里的tweenTo(index)方法 为什么按下鼠标快速向某方向滑动的情况下想要显示的index单元格位置会有偏移,怎么控制单元格的位置 this._list.tweenTo(this._list.page, 500, isFresh ? Laya.Handler.create(this, this.refresh) : null);核心就这句,this._list.pa...
来源: Laya_社区 发布时间: 20180911
我调用了list里的这个方法tweenTo(index),当这个index足够大时,界面就会是个空白,没有渲染出我要的图片,当我拖动列表时就可以渲染出,这个问题怎么解决 2018-07-23 添加评论 悬赏 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请...
来源: Laya_社区 发布时间: 20180723
...Select)设置renderHandler和selectHandler, _proto.onListSelect = function(index){ console.log(index + ' selected'); } _proto.onRenderList = function(cell,index){ console.log(cell.dataSource); //如果索引不再可索引范围,则终止该函数 if(index > this.data.length)return; //获取当...
来源: Laya_社区 发布时间: 20170914
...ler(this,onMouse); } //鼠标事件添加 private function onMouse(e:Event,index:int):void { //鼠标单击事件触发 if(e.type == Event.CLICK) {//如果点中的是checkBox组件 if((e.target) is CheckBox) { var tempObj:Object = arr[index];//记录当前条目所包含组件的数据信息(避免...
来源: Laya_社区 发布时间: 20170313
...据 } ViewActivityLimitedTask.prototype.onItemUpdate = function(_cell, _index) { var data = this.mList_.task_info[_index]; if (data) { _cell.layer_one.visible = (-1 == data.task_id); _cell.layer_two.visible = !_cell.layer_one.visible; _cell.height =...
来源: Laya_社区 发布时间: 20191111
...如何动态加载多个image,并为每个image添加监听事件? var Index=(function(_super){ function Index(){ Index.super(this); this.data = ["1tong","2tong","3tong","4tong","5tong","6tong","7tong","8tong","9tong","1tiao","2tiao","3tiao","4tiao","5tiao"]; var _dataSource_=[]; for(var i = 0;i...
来源: Laya_社区 发布时间: 20170914