大约有 2 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0022 秒)
...ld(txt); txt.on(Event.MOUSE_DOWN, this, startScrollText); } /* 开始滚动文本 */ function startScrollText(e) { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrollText); } /* 停止滚动文本 */ function fin...
来源: Laya_示例 发布时间: 20241117
...value) { txt.text += value; txt.scrollY = txt.maxScrollY; } /**添加提示文本*/ function createLogger() { txt = new Text(); txt.overflow = Text.SCROLL; txt.text = "请把鼠标移到到矩形方块,左右键操作触发相应事件\n"; txt.size(Laya.stage.width, Laya.stage.height); txt.pos(10, 5...
来源: Laya_示例 发布时间: 20241117