大约有 4 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0014 秒)
...e'; logger.size(Laya.stage.width, Laya.stage.height); logger.text = "等待响应...\n"; Laya.stage.addChild(logger); } onHttpRequestError(e) { console.log(e); } onHttpRequestProgress(e) { console.log(e); } onHttpRequestComplete(e) { logger.text += "收到数据:" + hr.data; } } new Network_POST()...
来源: Laya2.0_示例 发布时间: 20241119
...e'; logger.size(Laya.stage.width, Laya.stage.height); logger.text = "等待响应...\n"; Laya.stage.addChild(logger); } onHttpRequestError(e) { console.log(e); } onHttpRequestProgress(e) { console.log(e); } onHttpRequestComplete(e) { logger.text += "收到数据:" + hr.data; } } new Network_GET();...
来源: Laya2.0_示例 发布时间: 20241119
...听 this.btn.on(Event.MOUSE_UP, this, this.onMouseUp); } /** * 鼠标事件响应函数 * @param evt */ onMouseUp(evt) { if (this.isDestroyed) { //通过设置 visible=true ,来触发渲染,然后引擎会自动恢复资源 this.spBg.visible = true; this.aniFly.visible = true; this.isDestroyed =...
来源: Laya2.0_示例 发布时间: 20241119
...ndler); rect.on(Event.MOUSE_WHEEL, this, this.mouseHandler); } /** * 鼠标响应事件处理 */ mouseHandler(e) { const Event = Laya.Event; switch (e.type) { case Event.MOUSE_DOWN: this.appendText("\n————————\n左键按下"); break; case Event.MOUSE_UP: this.appendText("\n左键抬...
来源: Laya2.0_示例 发布时间: 20241119