大约有 83 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...有回调 已经测试过的方式: 以下三种方式都无返回 window.addEventListener('devicemotion', function(event){}) window.addEventListener('deviceorientation', function(event) {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation); 连接打开方式都...
来源: Laya_社区 发布时间: 20191202
...被关掉: * 设置为`false`时: 代码如下: ```typescript document.addEventListener('touchstart',()=>{ if(conch){ var l = 50; var t = 50; var w = window.innerWidth - l * 2; var h = window.innerHeight - t * 2; conch.setExternalLinkEx('http://www.layabox.com',l,t,w,h,false); // canclose设置...
来源: Laya2.0_文档 发布时间: 20210714
... 17:17 http://ask.layabox.com/question/155 这个问题里面的 textInput.addEventListener(FocusEvent.FOCUS_IN,onFocusIn); textInput.addEventListener(FocusEvent.FOCUS_OUT,onFocusOut);这两个事件有吗?我怎么没找到,还有就是里面写的Laya.stage.on(Laya.Event.RESIZE,this,this.onSta...
来源: Laya_社区 发布时间: 20170322
... 2 分享 微博 QZONE 微信 KevinWoo 赞同来自: Laya.Browser.document.addEventListener("resume", this.focus); Laya.Browser.document.addEventListener("pause", this.pause); 监听这两个事件就可以了。 2018-07-26 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 ...
来源: Laya_社区 发布时间: 20170713
...ame: window.postRuntimeMessage({xx:123}) 给加速器发消息 window.addEventListener("message",function(e){alert(e.data)}) 监听加速器发来的消息 conch: window.postMessage({jj:123}); 给iframe发消息 window.addEventListener("message",function(e){alert(e.data)});监听iframe发...
来源: Laya_社区 发布时间: 20181008
...ain extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMode.NO_SCALE; this.stage.align = StageAlign.TOP_L...
来源: Laya_社区 发布时间: 20151123
...; mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask; addEventListener(Event.ENTER_FRAME,function():void { mask.x++; mask.cacheAsBitmap=true; sp.cacheAsBitmap=true; }); ``` **LayaAir引擎中正确的用法示例:** ```java Laya.init(600,400) var sp:Sprite=new Sprite(); sp.gra...
来源: Laya2.0_文档 发布时间: 20191206
...; mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask; addEventListener(Event.ENTER_FRAME,function():void { mask.x++; mask.cacheAsBitmap=true; sp.cacheAsBitmap=true; }); ``` **LayaAir引擎中正确的用法示例:** ```java Laya.init(600,400) var sp:Sprite=new Sprite(); sp.gra...
来源: Laya2.0_文档 发布时间: 20210714
...新建一个my_task.js文件,放到js文件夹下,代码如下: self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","../a...
来源: Laya3.0_文档 发布时间: 20241014
...ker. ``` 新建一个my_task.js文件,代码如下: ```typescript self.addEventListener('message', function (e) { var xmlreq = new XMLHttpRequest(); xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/...
来源: Laya2.0_文档 发布时间: 20210715