大约有 48 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(39) Laya2.0_文档(3) Laya_示例(1) laya_api(1) Laya3.0_api(1) Laya2.0_示例(1) Laya2.0_api(1) Laya3.0_文档(1)
...this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = []; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } public updateItem(cell: Laya.Box, index: number): void { let img_rule = cell.getChildByName("img_rule") a...
来源: Laya_社区 发布时间: 20180724
...eckBox: { visible: false } }; dataSource.push(_data); } ; this.mainUI.list.array = dataSource; this.mainUI.list.vScrollBarSkin = ""; this.mainUI.list.mouseHandler = new Laya.Handler(this, this.onSelect); this.mainUI.list.renderHandler = new Laya.Handler(this, this.onRender); Laya.stage.addChild(this...
来源: Laya_社区 发布时间: 20170207
...anchorY值最终通过pivotY值来改变节点轴心点。UIComponent array : Array 列表数据源。 List autoSize : Boolean = false 指定是否自动计算宽高数据。默认值为 false 。 Sprite宽高默认为0,并且不会随着绘制内容的变化而变化,如果想根据绘制...
来源: Laya2.0_api 发布时间: 20190513
...this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = ; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } public updateItem(cell: Laya.Box, index: number): void { let img_rule = cell.getChildByName("img_rule") as ...
来源: Laya_社区 发布时间: 20170215
... 2018-05-08 0 1 分享 微博 QZONE 微信 Miller 赞同来自: rankList.array = data; rankList.height = 670; 我试了一下,大概高度超过670这个list高度就不变了,即使把高度设置成1000,list也是显示这么长。往小的方向改是可以有效果的,但超过670就对l...
来源: Laya_社区 发布时间: 20180507
...图5) ####6. 在代码里给 List 对象赋值。 ```javascript var data:Array =[]; for(var m:int =0;m (图6) ####8. 在代码里添加脚本,隐藏滚动条,设置拖拽的橡皮筋效果。 ```javascript m_list.scrollBar.hide = true;//隐藏列表的滚动条。 m_list.scrollBar.elas...
来源: Laya2.0_文档 发布时间: 20210715
...,值为0-1Component anchorY : NumberY轴锚点,值为0-1Component array : Array 列表数据源。 List autoSize : Boolean = false 指定是否自动计算宽高数据。默认值为 false 。 Sprite宽高默认为0,并且不会随着绘制内容的变化而变化,如果想根据绘制...
来源: laya_api 发布时间: 20170929
... // 设置数据项为对应图片的路径 var data: Array<String> = []; //解析二进制已获得关卡队列,先取有效位书 let s = json.my_guanqia.substr(0,this.default_guanqia.length); data = this.find_Strin...
来源: Laya_社区 发布时间: 20210122
Laya的list 在使用List时,在List.array初始化之前使用List.vScrollBarSkin = "";,会导致多生成一行元素,查看源码有做这个处理,具体是为什么呢? 最好还是在array初始化之后再使用List.vScrollBarSkin = ""; 附件 : --> 2021-05-25 添加评论 免费...
来源: Laya_社区 发布时间: 20210525
...andler = new Laya.Handler(this, this.updateListItem); this.publicSpaceList.array = ; this.addChild( this.publicSpaceList ); public setPublicSpacesData (_publicSpacesInfo:any) : void ///调用这个方 传入参数 里面有每一个图片的名字 { this.publicSpacesInfo = _publicSpacesInfo; thi...
来源: Laya_社区 发布时间: 20170923