大约有 24 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0040 秒)
...行,默认为 true 。 */ frameOnce(delay: number, caller: any, method: Function, args: any[] = null, coverBefore: boolean = true): void { this._create(true, false, delay, caller, method, args, coverBefore); } 使用示例如下: const { regClass } = Laya; import { RuntimeScriptBase } from "./Ru...
来源: Laya3.0_文档 发布时间: 20241014
...如下: var myWorker = new Worker("js/my_task.js"); myWorker.onmessage = function (oEvent) { console.log("Called back by the worker!\n"); }; myWorker.postMessage("start"); // start the worker. 新建一个my_task.js文件,放到js文件夹下,代码如下: self.addEventListener('message', fu...
来源: Laya3.0_文档 发布时间: 20241014
...载界面的关闭,需要删除这段代码。 window.hideSplashScreen = function() { window.loadingView.hideLoadingView(); } 步骤2: 调用loadingView.loading(nPercent)更新进度条。 伪代码如下: var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { i...
来源: Laya3.0_文档 发布时间: 20241024
...ndler = null): void { Geolocation.navigator.geolocation.getCurrentPosition(function (pos: any): void { Geolocation.position.setPosition(pos); onSuccess.runWith(Geolocation.position); }, function (error: any): void { onError.runWith(error); }, { enableHighAccuracy: Geolocation.enableHighAccuracy, tim...
来源: Laya3.0_文档 发布时间: 20241014
...te(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 直接调用size设置: Laya.loader.load("res/apes/monkey2.png",L...
来源: Laya3.0_文档 发布时间: 20241014
...n 此 EventDispatcher 对象。 */ on(type: string, caller: any, listener: Function, args: any[] = null) 用于向事件派发器注册指定类型的事件侦听器,使事件侦听器能够接收事件通知。当侦听到事件后,会调用作用域 caller 的回调方法 listener。 上述2.2...
来源: Laya3.0_文档 发布时间: 20241014
...vM7nH0Kl.m3u8'); hls.attachMedia(video); hls.on(Hls.Events.MANIFEST_PARSED,function():void{ video.play(); }); } plyr.setup(video); } } new LayaUISample; 编译运行代码,发现网页已经可以播放视频了。开发者可能注意到这里我们初始化引擎的时候是这样的: Laya.ini...
来源: Laya3.0_文档 发布时间: 20241014
...(XCode、Android Studio项目),会看到所有的横竖屏属性: function setOrientation(s) { var nameToVal = { landscape: 0, portrait: 1, user: 2, behind: 3, sensor: 4, nosensor: 5, sensor_landscape: 6, sensorLandscape: 6, sensor_portrait: 7, sensorPortrait: 7, reverse_landscape: 8, revers...
来源: Laya3.0_文档 发布时间: 20241024
...会打扰到用户。 1,属性 属性 类型 描述 onreadystatechange function 一个JavaScript函数对象,当readyState属性改变时会调用它。 readyState unsigned short 请求的五种状态 response varies 响应实体的类型由 responseType 来指定, 可以是 ArrayBuffer ,Blo...
来源: Laya3.0_文档 发布时间: 20241014
...dge.call("testBool:",false)); obj.value = "Hello OC!"; bridge.callWithBack(function(value: any) { var obj = JSON.parse(value) alert(obj.value); },"testAsyncCallback:", JSON.stringify(obj)); } else if (os == "Conch-android") { alert(bridge.call("testString","hello")); alert(bridge.call("testNumber",2...
来源: Laya3.0_文档 发布时间: 20241023