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

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

191. DOM元素-表单输入 [ 71%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#fff"; this.form = new Laya.Sprite(); this.form.size(250,120); this.form.pos((Laya.stage.width - this.form.width) / 2, (Laya.stage.height - this.form.height) / 2); Laya.stage.addChild(this.form); this.rowHeight = 3...

来源: Laya2.0_示例 发布时间: 20241118

192. Label属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 71%]

...middle、bottom。 | | color | 文本的颜色值。默认为黑色。 | | bgColor | 文本背景颜色。 | | font | 文本的字体名称。 | | fontSize | 文本的字体大小。 | | bold | 文本是否为粗体字显示。 | | italic | 文本是否显示为斜体。 | | wordWrap | 文本是否...

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

193. 骨骼动画-Spine事件 [ 70%]

...e; (function(){ Laya.init(Browser.width, Browser.height,WebGL); Laya.stage.bgColor = "#ffffff"; Stat.show(); mLabelSprite = new Sprite(); startFun(); })(); function startFun() { mAniPath = "../../res/spine/spineRes6/alien.sk"; mFactory = new Templet(); mFactory.on(Event.COMPLETE, this, parseComplete...

来源: Laya_示例 发布时间: 20241118

194. 鼠标交互-双指旋转(多点触控) [ 70%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); this.setup(); } setup() { this.createSprite(); Laya.stage.on(Event.MOUSE_UP, this, this.onMouseUp); Laya.stage.on(Event.MOUSE_OUT, this, this.onMouseUp); } createSprite() { const Sprite = Lay...

来源: Laya2.0_示例 发布时间: 20241118

195. 鼠标交互-Hold [ 70%]

....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(apePath, Handler.create(this, createApe)); })(); function createApe() { // 添加一只猩猩 ape = new Sprite(); ape.loadImage(apePath); var texture = Laya.loader.getRes(apePath); ape.pi...

来源: Laya_示例 发布时间: 20241118

196. 骨骼动画-Spine事件 [ 70%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#ffffff"; mLabelSprite = new Sprite(); Stat.show(); this.startFun(); } startFun() { const Templet = Laya.Templet, Event = Laya.Event; const mAniPath = "res/spine/spineRes6/alien.sk"; mFactory = new Templet(); mFact...

来源: Laya2.0_示例 发布时间: 20241118

197. 缓动-时间线 [ 70%]

...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; setup(); })(); function setup() { createApe(); createTimerLine(); Laya.stage.on( Event.KEY_DOWN, this, this.keyDown); } function createApe() { target = new Sprite(); target.loadImage("../../res/apes/monke...

来源: Laya_示例 发布时间: 20241118

198. mac下用FB打包发布测试页面,chrome浏览器看不到预期显示文字 [ 70%]

...le is not defined. /LayaAirTest/src/LayaAirTest.as (20):warning:Laya.stage.bgColor This variable is not defined. /LayaAirTest/src/LayaAirTest.as (22):warning:Laya.stage.addChild This variable is not defined.   代码如下: package {     import laya.display.Text;     public class LayaAirTes...

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

199. 物理引擎-布 [ 70%]

....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Stat.show(); setup(); })(); function setup() { initMatter(); initWorld(); Laya.stage.on("resize", this, onResize); } function initMatter() { var gameWorld = new Sprite(); Laya.stage.addChild(gameWorld); /...

来源: Laya_示例 发布时间: 20241118

200. Label属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 70%]

...middle、bottom。 | | color | 文本的颜色值。默认为黑色。 | | bgColor | 文本背景颜色。 | | font | 文本的字体名称。 | | fontSize | 文本的字体大小。 | | bold | 文本是否为粗体字显示。 | | italic | 文本是否显示为斜体。 | | wordWrap | 文本是否...

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