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

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

21. 如何用代码控制panel的vscroll滚动幅度 [ 79%]

...相关的链接 提交 2 个回复 cuixueying 赞同来自: 控制panel的vScrollBar的scrollSize即可! 2017-07-19 0 6 分享 微博 QZONE 微信 cuixueying 赞同来自: package { import laya.display.Sprite; import laya.net.Loader; import laya.ui.Panel; import laya.utils.Handler; public class La...

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

22. laya.ui.ScrollBar_API3.0 [ 78%]

...blic/Protected All Inherited Externals Only exported Menu Globals "laya/ui/ScrollBar" ScrollBar Class ScrollBar ScrollBar 组件是一个滚动条组件。 当数据太多以至于显示区域无法容纳时,最终用户可以使用 ScrollBar 组件控制所显示的数据部分。 滚动条由四...

来源: Laya3.0_api 发布时间: 20231115

23. laya 的list组件,如果有多页信息,怎么实现翻页丫?? [ 78%]

...private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, t...

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

24. List翻页效果怎么实现 [ 78%]

...private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, t...

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

25. 关于list滚动位置的问题 [ 77%]

关于list滚动位置的问题 ... mDemoUi.myScrollBar.changeHandler = new Handler(this, onChange); for(var m:int=0;m<21;m++){ data.push({m_label:"No."+m}); } mDemoUi.m_list.array=data; Laya.stage.addChild(mDemoUi); ... private function onChange():void{ trace("list index= "+mDemoUi.m_list.scrol...

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

26. 请问laya有没有类似翻页容器(pageView)的组件? [ 76%]

...private m_downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, t...

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

27. 请问list如何判断已经拉到底部了 [ 73%]

...注: 3 人 183*****470 • 2018-07-03 11:17 感谢回复 我用的是 list.scrollBar.max == list.scrollBar.value 目前没什么问题 188*****501 • 2018-07-14 14:12 (this.card_List.scrollPane.posY + this.card_List.height) >= this.card_List.scrollPane.contentHeight 我用的这个判断

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

28. 列表嵌套另外一个列表 [ 73%]

...容相关的链接 提交 1 个回复 w1114367261 赞同来自: this.ist.scrollBar.min = 1;//设置滚动条的最小值 this.ist.scrollBar.max = 1000;//设置滚动条的最大值 this.ist.scrollBar.value = 1000;//设置滚动条当前值 this.ist.scrollBar.touchScrollEnable  = false ;//取消滚...

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

29. UI-RefreshList [ 72%]

...前最大id值 */ this.msgIdNow=1; /** 滚动条效果是否停止 */ this.scrollBarIsStop=false; /** 移动前的上次坐标位置 */ this.moveLastPos = null; /** 列表单元是否已打开 */ this.itemIsOpen=false; /**展开的单元格索引ID */ this.itemOpenId=-1; /**展开的单元格对象 ...

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

30. Panel初始化BUG [ 71%]

...做法,有的话请指教一下。 Panel创建后,同帧设置Panel的hScrollBar="",然后refresh(),设置value值,则面板刷新位置出错,因为setContentSize实际上 当前帧并没有调用,而之后调用创建在了0,0点,因此位置错误了 类似的BUG  https://ask.layab...

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