大约有 632 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0063 秒)
Laya_社区(254) Laya2.0_示例(114) Laya2.0_文档(94) Laya_示例(92) Laya3.0_api(34) Laya2.0_api(21) Laya3.0_文档(15) laya_api(8)
....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; setup(); })(); function setup() { createParagraph(); // 代码创建 showExternalHTML(); // 使用外部定义的html } function createParagraph() { var p = new HTMLDivElement(); Laya.stage.addChild(p); p...
来源: Laya_社区 发布时间: 20170515
...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Laya.loader.load(this.skin, Handler.create(this, this.onLoadComplete)); } private onLoadComplete(): void { var cb: ComboBox = this.createComboBox(this.skin); cb.autoSize = true; cb.pos((Laya.stage.width -...
来源: Laya2.0_文档 发布时间: 20210715
... Laya.init(Browser.width, Browser.height,WebGL); Stat.show(); Laya.stage.bgColor = "#ffcccc"; Laya.stage.on(Event.CLICK,this,onClick); sp= new Sprite(); sp.name='base'; sp.loadImage("logo.png"); Laya.stage.addChild(sp); } private function onClick():void { var htmlsss:String=(Laya.stage.getChildAt(0)...
来源: Laya_社区 发布时间: 20170523
...ser.height, WebGL); Laya.stage.scaleMode = Stage.SCALE_NOSCALE; Laya.stage.bgColor = "#232628"; Stat.show(); this.startFun(); } private startFun(): void { //创建动画模板 this.templet = new SpineTempletBinary(); this.templet.loadAni(this.aniPath); this.templet.on(Event.COMPLETE, this, this.pars...
来源: Laya2.0_文档 发布时间: 20210715
...锯齿 //初始化引擎 Laya.init(1024, 768); //Stat.show(); Laya.stage.bgColor = "#ccc"; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; StageReferance.setup(Laya.stage); init(); } private function init():void { _view = ne...
来源: Laya_社区 发布时间: 20180319
...aya.stage.screenMode = Stage.SCREEN_VERTICAL; //设置横竖屏 Laya.stage.bgColor = "#232628"; // Laya.stage.frameRate = "show"; //注册扩展时需要用到的类 /**初始化顶层游戏类 */ // laya.utils.Stat.show(0,0); // window.onerror = function(message,url,line){ // alert("执行" + url +...
来源: Laya_社区 发布时间: 20180226
...el调试面板 Laya.enableDebugPanel(); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; var Img = new Laya.Sprite(); //添加到舞台 Laya.stage.addChild(Img); Img.loadImage("res/img/monkey1.png",200); ``` 运行效果如图1所示 ![图1](img/1.png) (图1) ### 2、刷新显示对象节点...
来源: Laya2.0_文档 发布时间: 20210715
....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#ffffff"; this.sp = new Sprite(); Laya.stage.addChild(this.sp); this.sp.graphics.drawPath(100, 100, [["moveTo", 100, 0], ["arcTo", 200, 0, 200, 100, 100], ["arcTo", 200, 200, 100, 200, 100], ["arcTo", 0, 200, 0, 10...
来源: Laya_社区 发布时间: 20170425
... Tree组件的特有属性如下图: (图1-12) 属性 功能说明 bgColor 背景颜色,勾选后可以直接输入颜色值,例如:#ffffff,也可以点击输入条右侧的拾色器选取颜色。 itemTemplate 渲染单元,具体用法已在1.2节的步骤中给出。 scrollBarSkin ...
来源: Laya3.0_文档 发布时间: 20241014
...H = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.bgColor = "#C0C0C0"; index.html和myLaya.max.html里增加如下: <meta name='full-screen' content='true' /> <meta name='screen-orientation' content='landscape' /> <meta name='x5-fullscreen' content='true' /&...
来源: Laya_社区 发布时间: 20170203