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

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

1. 文本-滚动文本 [ 100%]

...ff"; this.txt.on(Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ startScrollText(e) { const Event = Laya.Event; prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Event.MOUSE_UP, this, this.finishScrollTex...

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

2. UI-RefreshList [ 90%]

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

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

3. 区块地图-滚动地图 [ 85%]

Layabox是免费开源的HTML5引擎解决方案,产品家族中包括LayaAir引擎、LayaFlash引擎、LayaOpen开放平台、LayaMarket SDK、LayaStore嵌入式游戏商店、LayaPlayer运行器。核心引擎LayaAir性能全球领先,支持2D、3D、VR开发,支持AS3、JavaScript、TypeScr...

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

4. UI-ScrollBar [ 76%]

...ndler = new Handler(this, this.onChange); } onChange(value) { console.log("滚动条的位置: value=" + value); } } new UI_ScrollBar();module laya { import Stage = Laya.Stage; import HScrollBar = Laya.HScrollBar; import VScrollBar = Laya.VScrollBar; import Handler = Laya.Handler; import WebGL = L...

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

5. UI-List [ 68%]

...; list.y = (Laya.stage.height - HEI * list.repeatY) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEnable = true; list.selectHandler = new Handler(this, this.onSelect); list.renderHandler = new Handler(this, this.updateItem); // 设置数据项为对应图片的路径 let data...

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

6. 鼠标交互-滑动 [ 67%]

...TypeScript三种开发语言、LayaAirIDE让项目开发更高效。//swipe滚动范围 let TrackLength = 200; //触发swipe的拖动距离 let TOGGLE_DIST = TrackLength / 2; let buttonPosition, beginPosition, endPosition; let button; class Interaction_Swipe { constructor() { const Browser = Laya.Br...

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

7. 鼠标交互-鼠标交互 [ 63%]

...———"); break; case Event.MOUSE_WHEEL: this.appendText("\n鼠标滚轮滚动"); break; } } appendText(value) { txt.text += value; txt.scrollY = txt.maxScrollY; } /**添加提示文本*/ createLogger() { const Text = Laya.Text; txt = new Text(); txt.overflow = Text.SCROLL; txt.text = "请把鼠...

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