大约有 2,727 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0072 秒)
Laya_社区(1131) Laya3.0_api(543) Laya2.0_api(297) laya_api(221) Laya2.0_文档(201) Laya_示例(139) Laya2.0_示例(109) Laya3.0_文档(86)
...c clientHeight get clientHeight(): number set clientHeight(value: number): void Defined in laya/utils/Browser.ts:401 浏览器窗口可视高度。 通过分析浏览器信息获得。浏览器多个属性值优先级为:window.innerHeight(包含滚动条高度) > document.body.clientHeight(不...
来源: Laya3.0_api 发布时间: 20231115
...xtends Laya.Script{ lab:Laya.Label; onAwake():void{ } onStart():void{ this.lab=this.owner as Laya.Label; } onUpdate():void{ if(this.lab==null){ ...
来源: Laya_社区 发布时间: 20200602
...源报错。 MsgMgr.instance.init(); Laya.timer.once(1000,this,function():void{ beginLoad(); }); private function beginLoad():void { Laya.loader.load("res/images/rank.json", Handler.create(this, onLoaded)); } private function onLoaded():void { trace("加载成功"); var c:Image = new Image("rank/cou...
来源: Laya_社区 发布时间: 20180830
...this.createCharacters), null, Loader.ATLAS); } private createCharacters(): void { this.characterGroup = []; for (var i: number = 0; i = 0; --i) { this.animateCharactor(this.characterGroup[i]); } } private animateCharactor(charactor: Sprite): void { charactor.x += this.moveSpeed; charactor.rotation +...
来源: Laya2.0_示例 发布时间: 20241119
....net.URLRequest; public class Main 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...
来源: Laya_社区 发布时间: 20151123
...法 成功失败。。 private function openHandler(event:Object = null):void{//正确建立连接; }private function receiveHandler(msg:Object = null):void{///接收到数据触发函数}private function closeHandler(e:Object= null):void{//关闭事件}private function errorHandler(e:Object = nu...
来源: Laya_社区 发布时间: 20180514
...,下面给出大概的代码 @Override public void onActivityStarted(Activity activity) { //这是切入事件 ConchJNI.RunJS("xxx"); } @Override public void onActivityStopped(Activity activity) { ...
来源: Laya_社区 发布时间: 20201226
...this, this.onColorPickerSkinLoaded)); } private onColorPickerSkinLoaded(): void { var colorPicker: ColorPicker = new ColorPicker(); colorPicker.selectedColor = "#ff0033"; colorPicker.skin = this.skin; colorPicker.pos(100, 100); colorPicker.changeHandler = new Handler(this, this.onChangeColor, [color...
来源: Laya_示例 发布时间: 20241119
...ode 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node clearTimer(caller:*, method:Function):void 清理定时器。功能同Laya.timer.clearTimer()。 Node contains(node:Node):Boolean 当前容器是否包含指定的 Node 节点对象 。 Node...
来源: laya_api 发布时间: 20170929
...u8'); hls.attachMedia(video); hls.on(Hls.Events.MANIFEST_PARSED,function():void{ video.play(); }); } plyr.setup(video); } } new LayaUISample; 编译运行代码,发现网页已经可以播放视频了。开发者可能注意到这里我们初始化引擎的时候是这样的: Laya.init(0,0);//...
来源: Laya3.0_文档 发布时间: 20241014