• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 83 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0032 秒)

11. list 数据不会及时渲染 [ 78%]

...          if(index%2){                     cardList.itemRender = roleCardUI;                     cardList.repeatY = cardArr.length;                     if(index == 1){ //                        cardList.y = 84;            ...

来源: Laya_社区 发布时间: 20170310

12. comobox自带样式可修改吗 [ 76%]

...交 2 个回复 yung 赞同来自: 解决办法: Combobox里面有一个itemRender属性,这个可以自定义Combobox的下拉列表(list)的长什么样 2017-01-21 0 1 分享 微博 QZONE 微信 匿名用户 赞同来自: 那item内容的样式可以修改的吗?像白色底和字体颜...

来源: Laya_社区 发布时间: 20170119

13. laya.ui.IRender [ 75%]

...实现设置项的渲染类型。 Public Properties PropertyDefined By  itemRender : *[write-only] 渲染项。 IRenderProperty DetailitemRenderpropertyitemRender:*  [write-only] 渲染项。 Implementation     public function set itemRender(value:any):voidFri Sep 29 2017, 06:34 PM +08:00

来源: laya_api 发布时间: 20170929

14. laya.ui.IRender [ 75%]

...实现设置项的渲染类型。 Public Properties PropertyDefined By  itemRender : *[write-only] 渲染项。 IRenderProperty DetailitemRenderpropertyitemRender:*  [write-only] 渲染项。 Implementation     public function set itemRender(value:any):voidMon May 13 2019, 03:06 PM +08:00

来源: Laya2.0_api 发布时间: 20190513

15. UI-List [ 73%]

...ler = Laya.Handler; let list = new List(); Laya.stage.addChild(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_示例 发布时间: 20241124

16. UI-List [ 73%]

...= "#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_示例 发布时间: 20241124

17. list item 添加事件后无法监听 [ 73%]

...tem_width, item_height) {     var list = new Laya.List();     list.itemRender = initItem(item_width, item_height);      list.repeatX = 1;     list.size(width, height);     list.x = x;     list.y = y;     list.vScrollBarSkin = "";      list.mouseHandler = new Handler...

来源: Laya_社区 发布时间: 20180724

18. 缓动-缓动函数演示 [ 68%]

...dler = Laya.Handler; let easeFunctionsList = new List(); easeFunctionsList.itemRender = ListItemRender; easeFunctionsList.pos(5, 5); easeFunctionsList.repeatX = 1; easeFunctionsList.repeatY = 20; easeFunctionsList.vScrollBarSkin = ''; easeFunctionsList.selectEnable = true; easeFunctionsList.selectHa...

来源: Laya2.0_示例 发布时间: 20241124

19. 缓动-缓动函数演示 [ 68%]

...{ // 项渲染器 var Box = Laya.Box; var Label = Laya.Label; function ListItemRender() { var label = null; ListItemRender.__super.call(this); this.size(100, 20); label = new Label(); label.fontSize = 12; label.color = "#FFFFFF"; this.addChild(label); this.setLabel = function(value) { label.text = v...

来源: Laya_示例 发布时间: 20241124

20. 关于list空间的问题 [ 67%]

...刷出来的列表会有20个的,断点见附件,代码如下 其中,itemRender我是用编辑器编辑的 var data = []; for (var i = 0; i < 1; ++i) {     data.push("../../res/ui/listskins/1.jpg");     data.push("../../res/ui/listskins/2.jpg"); } this._ui.serverList.vScrollBarSkin = ""...

来源: Laya_社区 发布时间: 20170924