大约有 1,381 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
Laya_社区(851) Laya2.0_文档(129) Laya3.0_api(105) Laya_示例(75) Laya2.0_api(66) laya_api(61) Laya2.0_示例(51) Laya3.0_文档(43)
...l("#00FFFF", null).pos(290, 50); createLabel("#FFFF00", "#FFFFFF").pos(30, 100); createLabel("#000000", "#FFFFFF").pos(290, 100); createLabel("#FFFFFF", "#00FFFF").pos(30, 150); createLabel("#0080FF", "#00FFFF").pos(290, 150); } function createLabel(color, strokeColor) { const STROKE_WIDTH = 4; var ...
来源: Laya_示例 发布时间: 20241118
...应呢? var xxx:Laya.Sprite = new Laya.Sprite(); xxx.graphics.drawRect(0,0,100, 100,"#ffffff"); xxx.size(100, 100); xxx.mouseEnabled = true; xxx.x = (Laya.stage.width - xxx.width) / 2; xxx.y = (Laya.stage.height - xxx.height) / 2; Laya.stage.addChild(xxx); xxx.on(Laya.Event.CLICK, this, this.onXXX);...
来源: Laya_社区 发布时间: 20170606
...rue); label.textFormat = textFormat; label.wordWrap = true; label.lWidth = 100; label.lHeight = 100; label.txt = "Hello"; label.lx = 100; label.ly = 100; Laya.stage.addChild(label); //---------------------------------这是用官方的api,无问题-------------------------------------------- // va...
来源: Laya_社区 发布时间: 20170516
...ference = new Laya.Sprite(); Laya.stage.addChild(reference); reference.pos(100, 100); reference.size(600, 400); reference.graphics.drawRect(0, 0, reference.width, reference.height, "#CCCCCC"); // 每次舞台尺寸变更时,都会调用Utils.fitDOMElementInArea设置Video的位置,对齐的位...
来源: Laya_示例 发布时间: 20241118
...0FFFF", null).pos(290, 50); this.createLabel("#FFFF00", "#FFFFFF").pos(30, 100); this.createLabel("#000000", "#FFFFFF").pos(290, 100); this.createLabel("#FFFFFF", "#00FFFF").pos(30, 150); this.createLabel("#0080FF", "#00FFFF").pos(290, 150); } createLabel(color, strokeColor) { const Label = Laya.Lab...
来源: Laya2.0_示例 发布时间: 20241118
...已创建完毕,此方法只执行一次 onAwake(): void { this.hbox.pos(100, 100); this.hbox.bgColor = "#ffffff"; this.hbox.space = 100; this.hbox.align = "middle"; } } 二、通过代码创建HBox组件 有时,需要用代码管理UI,创建UI_HBox类用于创建HBox组件。由于单独创...
来源: Laya3.0_文档 发布时间: 20241014
... if(e.keyCode==37){//左 this.hero.pos(this.hero.x-100,this.hero.y); }else if(e.keyCode==39){//右 this.hero.pos(this.hero.x+100,this.hero.y); }else if(e.keyCode==38){//上 this.hero.pos(t...
来源: Laya_社区 发布时间: 20161015
... redBox.pos(250,200); redBox.autoSize = true; redBox.graphics.drawRect(0,0,100,100,'#ff0000'); Laya.stage.addChild(redBox); redBox.on("click",this,function(){ trace("click redbox"); }); redBox.on("mouseover",this,function(){ redBox.graphics.clear(); redBox.graphics.drawRect(0,0,100,100,'#00ff00'); }...
来源: Laya_社区 发布时间: 20170710
LayaIDE (AS3) 中使用webgl 在Laya.init(100, 100, ) 这块怎么设置? 2018-03-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来自: Laya.init(100, 100, WebGL); 2018-03-05 0 4 分享 微博 Q...
来源: Laya_社区 发布时间: 20180305
...一个图片有400*400的宽高,但是图片内像是角色的宽高是100*100,多余的地方就是没有用的,裁剪空白区域后,调用这个图集的时候,程序会自动将图片的宽高恢复成400*400,求怎么得到那100*100的区域,而且是个动画必然有宽高不...
来源: Laya_社区 发布时间: 20171028