• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 632 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)

291. 关于嵌入div [ 57%]

...ayaAirDemo() { Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.bgColor = "#232628"; Laya.timer.once(500,this,onLoop); Stat.show(); } private function onLoop():void { __JS__('var LayaCanvas1=document.getElementsByTagName("canvas")[0]'); __JS__('var LayaCanvas2=document.getElementsByTagNam...

来源: Laya_社区 发布时间: 20170421

292. 关于button的click监听 [ 57%]

...class GameMain{ constructor() { Laya.init(750,1334,Laya.WebGL); Laya.stage.bgColor="#FFFFFF"; Laya.stage.scaleMode = "showall"; //不缩放 fixedauto showall Laya.stage.alignH = "center"; //水平居中 Laya.stage.alignV = "middle"; //垂直居中 this.init();...

来源: Laya_社区 发布时间: 20171128

293. 怎么实现一个Timer的loop的delay时间越来越短? [ 57%]

...nction LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; sp=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#FF0000"); Laya.stage.addChild(sp); Laya.timer.loop(delay,this,onLoop); } private function onLoop():void { delay-=50; sp.x+=20; Laya.timer.clear(this,onLoo...

来源: Laya_社区 发布时间: 20170626

294. 华为手机SoundManage.playSound有问题 [ 57%]

...         Laya.init(1136, 640);             Laya.stage.bgColor="#ffcccc";             SoundManager.playSound("GameSound/aa/bb.mp3",1,new Handler(this,soundComplete));                                  }            private func...

来源: Laya_社区 发布时间: 20180314

295. 文本基础样式(ActionScript-LayaAir基础篇(AS3)-文本) [ 57%]

... Hei"; //设置字体大小 txt.fontSize = 32; //设置文本区背景 txt.bgColor = "#c30c30"; //设置文本框的颜色 txt.borderColor = "#23cfcf"; //设置粗体、斜体 txt.bold = true; txt.italic = true; Laya.stage.addChild(txt); } } } ``` ![5](img/5.png) 这里我们就可以看到字体样...

来源: Laya2.0_文档 发布时间: 20210714

296. 设置pivot后,精灵位置显示位置不正确 [ 57%]

... constructor() { Laya.init(2000, 1500); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" this.sp = new Laya.Sprite(); let width = 660 let height = 420 this.sp.size(width, height) this.sp.pivot(Math.round(width / 2), Math.round(height / 2)) this.sp.graphics.drawCircle(0, 0, 5, "#000000") this.s...

来源: Laya_社区 发布时间: 20171230

297. 降帧模式下oppo真机上闪屏 [ 57%]

...e.frameRate="slow"; Laya.stage.scaleMode=Laya.Stage.SCALE_FULL; Laya.stage.bgColor="#444"; var sprite=new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.loadImage("img/bg.jpg"); } start(); 附件 : --> test-low-frame.zip 2020-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...

来源: Laya_社区 发布时间: 20200507

298. 嵌入百度地图后的一系列问题 [ 57%]

...作 2. 百度地图可以拖动   目前我已经通过设置laya.stage的bgColor为null(canvas模式,webgl模式怎么都不成功),以及设置baidu地图层的zIndex=-1(按照官方教程做的),达到了上面的目标1 现在问题是,底层的百度地图无法相应拖动消...

来源: Laya_社区 发布时间: 20180611

299. img点击事件。点击图片外,也触发了事件。请问怎么解决 [ 57%]

... //初始化舞台 Laya.init(710,960); //设置舞台背景色 Laya.stage.bgColor = "#66FF66"; Laya.stage.scaleMode = "showall"; Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; Laya.loader.load("res/img/m1.jpg",Laya.Handler.create(this,load)); function load(...

来源: Laya_社区 发布时间: 20180806

300. timeline播放完成Bug [ 57%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; const monkey1Path = "https://layaair2.ldc2.layabox. ... 3B%3B Laya.loader.load(monkey1Path, Laya.Handler.create(this, function() { let monkey = Laya.loader.getRes(monkey1Path); let ape = new Laya.Sprite()...

来源: Laya_社区 发布时间: 20190927