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

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

31. ui list 里面的元素不能点击两次 [ 90%]

...不能点击两次 你好,咱们list list.selectHandler = new Handler(this, onSelect); 只能获取一次点击事件么? 如何修改才能让list里面的元素 可以被连续点击?  附件 : --> 2016-12-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

32. 缓动-缓动函数演示 [ 88%]

...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.setup(); } setup() { this.createCharacter(); this.createEaseFunctionList(); this.createDurationCrontroller(); } createCharacter() { const Sprite = Laya.Sprite; character = new Sprite(); Laya.stage.addChild(character); ch...

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

33. 缓动-缓动函数演示 [ 87%]

... 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 = value; } } Laya.class(ListItemRender, "ListItemRender", Box); ...

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

34. 我创建了 一个 dialogUI,怎么在页面中打开? [ 87%]

我创建了 一个 dialogUI,怎么在页面中打开? this.wrong=new ui.wrongUI; this.wrong.width=300; this.wrong.height=200; this.wrong.x=50; this.wrong.y=100; this.doworkui.addChild(this.wrong); doworkui是我的一个UI,我要在这个面中打开一个对话框. wrongUI是我创建的 对话...

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

35. 一个按钮注册两次点击事件,两个事件都会执行 [ 87%]

...uojianfei 赞同来自: pc测试啊,一个按钮注册两次必现啊   this.sureBtn.on("click",this,this.onSurebtn); this.sureBtn.on("click",this,this.enterGame);   都会执行啊 2017-04-11 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发...

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

36. UI-RefreshList [ 87%]

...ya.Tween; TextArea = Laya.TextArea; class UI_RefreshList { constructor() { this.baseBox = null; this.refreshLoading = null; this.loadingAni = null; this.loadingLabel = null; this.refreshList = null; /** 消息生成的当前最大id值 */ this.msgIdNow=1; /** 滚动条效果是否停止 */ this.scro...

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

37. list只能显示一个图片 [ 87%]

...值 for (i=1;i<10;i++) { var item = {pic:{skin:'cards/'+i+'tong.jpg'}}; this.data.push(item); } console.log(this.data); this.list1.dataSource = this.data; this.list1.x = 50; this.list1.y = 500; this.list1.getChildAt(0).height = 100; this.list1.vScrollBarSkin = ""; this.list1.hScrollBarSkin = "com...

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

38. 数据、图片路径已加载到数组里面,要如何将图片路径赋值给skin?然后显示到list[ 86%]

...哪里 2018-03-21 0 0 分享 微博 QZONE 微信 andyskaura 赞同来自: this.otherItem_list.mouseHandler = new Handler(this,otherItem_listRender,null,false);  你试一下在回调otherItem_listRender(){ .skin="" } 里面直接给skin赋值,我平常都是这样用的。 2018-03-21 0 ...

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

39. List 组件做的手风琴Demo [ 86%]

...e(100,300);         list.repeatX =1;         list.repeatY =this.arr.length;         list.itemRender =Item; //Item 为继承BOX类         list.vScrollBarSkin ="";         Laya.stage.addChild(list);         list.array =this.arr;         list.ren...

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

40. list删除元素,如果2个名字一样,他不会刷新颜色。 [ 86%]

...。   引用场景,卡牌融合。 比较常用的list功能。 ```  this.uiList.refresh(); 也无效 ```    this.uiList.array=[]; this.uiList.array=修改数组 this.uiList.refresh();  该数组情况,重新赋值也无效   临时解决方案: 关闭ui重新打开,这个功能比较...

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