大约有 91 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0046 秒)
Laya_社区(65) Laya2.0_文档(6) laya_api(4) Laya2.0_示例(4) Laya2.0_api(4) Laya3.0_api(3) Laya_示例(3) Laya3.0_文档(2)
... super(); this.list.vScrollBarSkin = ''; this.list.itemRender = Item_List; this.list.renderHandler = new Laya.Handler(this, this.onItemRender); this.list.scrollBar.elasticBackTime = 200; this.list.scrollBar.elasticDistance = 200; } ...
来源: Laya_社区 发布时间: 20170614
...gSprite); } } } Laya.class(Item, "Item", Box); var list = new List(); list.itemRender = Item; list.x = 15; list.y = 60; list.height = 470; list.width = 542; list.spaceY = 20; list.vScrollBarSkin = ""; list.repeatX = 1; list.repeatY = 10; list.selectEnable = false; list.renderHandler = new Handler(th...
来源: Laya_社区 发布时间: 20170920
...= "#232628"; setup(); })(); function setup() { var list = new List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - WID) / 2; list.y = (Laya.stage.height - HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEnable = tr...
来源: Laya_社区 发布时间: 20180312
... Sprite hScrollBarSkin : String 水平方向滚动条皮肤。 List itemRender : * 单元格渲染器。 取值: 单元格类对象。 UI 的 JSON 描述。 List layoutEnabled : Boolean = true 是否启用相对布局 Component left : Number 从组件左边到其内容区域左边之间的...
来源: laya_api 发布时间: 20170929
... Sprite hScrollBarSkin : String 水平方向滚动条皮肤。 List itemRender : * 单元格渲染器。 取值: 单元格类对象。 UI 的 JSON 描述。 List left : Number 从组件左边到其内容区域左边之间的水平距离(以像素为单位)。 UIComponent length : int...
来源: Laya2.0_api 发布时间: 20190513
...置橡皮筋极限距离。 rankList.spaceY = 20; rankList.itemRender = Item; rankList.repeatX = 1; //rankList.repeatY = 1; rankList.vScrollBarSkin = ""; rankList.renderHandler = new Laya.Handler(this, updateItem); Laya.stage.addChild(rankList)...
来源: Laya_社区 发布时间: 20180507
...= "#232628"; setup(); })(); function setup() { var list = new List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - WID) / 2; list.y = (Laya.stage.height - HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEnable = tr...
来源: Laya2.0_文档 发布时间: 20210714
... this.setup(); } private setup(): void { var list: List = new List(); list.itemRender = Item; list.repeatX = 1; list.repeatY = 4; list.x = (Laya.stage.width - Item.WID) / 2; list.y = (Laya.stage.height - Item.HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectE...
来源: Laya2.0_文档 发布时间: 20210715
...: void { var list = new List(); list.itemRender = Item; list.repeatX = 3; list.repeatY = 3; list.x = 50; list.y = 100; list.spaceX = -50; list.spaceY = ...
来源: Laya_社区 发布时间: 20210122
...ist:List = new List();//创建一个 List 类的实例对象 list 。 list.itemRender = Item;//设置 list 的单元格渲染器。 list.repeatX = 1;//设置 list 的水平方向单元格数量。 list.repeatY = 10;//设置 list 的垂直方向单元格数量。 list.vScrollBarSkin = "resource/ui/vs...
来源: Laya3.0_api 发布时间: 20231115