大约有 43 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
...现 根据官网UI示例改编 private index_num =99999; // 定义当前点击索引 默认值 最好比List 数据长度要大 private listArr =[]; //包含List 数组 private arr = [0,1,2,3]; //List 的数据源(此代码中arr只起到渲染数量作用) /** * 创建Li...
来源: Laya_社区 发布时间: 20190522
...点偏移,则显示筛选会不精确)。 Sprite page : int 列表的当前页码。 List parent : Node[override] Sprite pivotX : NumberX轴 轴心点的位置,单位为像素,默认为0。轴心点会影响对象位置,缩放中心,旋转中心。Sprite pivotY : NumberY轴 轴心点...
来源: laya_api 发布时间: 20170929
...件 if((e.target) is CheckBox) { var tempObj:Object = arr[index];//记录当前条目所包含组件的数据信息(避免后续删除条目后数据结构显示错误) if(((e.target) as CheckBox).selected)//根据check的选中状态,设置条目的数据信息 { listP._list.setItem(index,{clip: ...
来源: Laya_社区 发布时间: 20170313
...umChildren : int[read-only] 子对象数量。 Node page : int 列表的当前页码。 List parent : Node[read-only] 父节点。Node pivotX : NumberX轴 轴心点的位置,单位为像素,默认为0。轴心点会影响对象位置,缩放中心,旋转中心。Sprite pivotY : NumberY...
来源: Laya2.0_api 发布时间: 20190513
...错 初始化时通过index下标 取消对应的事件。除了取消了当前的index下绑定事件。还取消了index值为当前index倍数的响应事件。 附件 : --> 2018-07-19 添加评论 悬赏 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20180719
...terval = 100; // 设置播放间隔(单位:毫秒) ani.index = 1; // 当前播放索引 ani.play(); // 播放图集动画 // 获取动画的边界信息 var bounds = ani.getGraphicBounds(); ani.scale(80/bounds.width ,80/bounds.height) this.addChild(ani) } } Laya.class(Item1, "Item1", Box); var...
来源: Laya_社区 发布时间: 20170627
...og("click") }) } function onSelect(index) { console.log("当前选择的索引:" + index); } function createAPIList(api_list_view) { let data = []; for (let i = 0; i < 10; i++) { let text_view = createTextView("12345", "black", 18, innerWidth, 3...
来源: Laya_社区 发布时间: 20180724
...ull; this.loadingLabel = null; this.refreshList = null; /** 消息生成的当前最大id值 */ this.msgIdNow=1; /** 滚动条效果是否停止 */ this.scrollBarIsStop=false; /** 移动前的上次坐标位置 */ this.moveLastPos = null; /** 列表单元是否已打开 */ this.itemIsOpen=false; /**...
来源: Laya2.0_示例 发布时间: 20241118
...化时通过index 取消对应UI页面默认添加的事件时,不仅将当前index下的事件取消掉了,还将index值为当前index的倍数的事件也取消掉了! 附件 : --> 2018-07-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...
来源: Laya_社区 发布时间: 20180719
...范围,则终止该函数 if(index > this.data.length)return; //获取当前渲染条目的数据 var listData = this.data[index]; console.log(listData); //根据子节点的名字listNumber,获取子节点对象。 //var img = cell.getChildByName("listNumber") ; var img = cell.getChildAt(0);...
来源: Laya_社区 发布时间: 20170914