大约有 258 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
... Laya.init(GameConfig.DeviceW, GameConfig.DeviceH, Laya.WebGL); Laya.stage.bgColor = "none";//背景透明 } else { Laya.init(GameConfig.DeviceW, GameConfig.DeviceH); Laya.stage.bgColor = null;//背景透明 } 万山飞雪 • 2018-09-13 18:34 有人解决吗? 手机上无效
来源: Laya_社区 发布时间: 20180519
... Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#00000"; setup(); })(); function setup() { var dialog = new Image(); dialog.skin = "../../res/ui/dialog (3).png"; dialog.sizeGrid = "40,40,40,40,0"; dialog.size(500,400); dialog.pos(165, 62.5); Laya.stage.addChild(...
来源: Laya_社区 发布时间: 20170828
...//初始化引擎 Laya.init(600, 400); //设置舞台背景色 Laya.stage.bgColor = "rgba(0,0,0,0.1)"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/apes.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { //创建一个UI实例 var plan = new ui.Ti...
来源: Laya_社区 发布时间: 20190217
...在HtmlDivElement文本中这两个属性冲突了。 通过给_html.style.bgColor赋值可以看到文本的显示区域,在_html.style.wordWrap=false时,显示区域为文本内容的宽度,然后会随文本的内容增加而增加,这时候确实是居中了,但是看起来就是左对...
来源: Laya_社区 发布时间: 20190628
...pe some word..."; // 设置字体样式 inputText.bold = true; inputText.bgColor = "#666666"; inputText.color = "#ffffff"; inputText.fontSize = 20; scene.addChild(inputText); var tip1 = new Laya.Label(); tip1.bgColor = "#666666"; tip1.color = "#ffffff"; tip1.fontSize = 20; tip1.x = Laya.stage.wi...
来源: Laya_社区 发布时间: 20200223
...化引擎 Laya.init(800,600,WebGL); //设置背景颜色为none Laya.stage.bgColor = "none";canvas下设置背景透明代码://初始化引擎 Laya.init(800,600); //设置背景颜色为null Laya.stage.bgColor = null; 2017-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20170414
...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
...rue; //设置画布是否透明,只对2D(WebGL)、3D有效。 Laya.stage.bgColor = "none"; //背景透明 } else { Laya.init(800, 600); Laya.stage.bgColor = null; //背景透明 } //画布水平居中对齐 Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; //画布垂直居中对齐 Laya.stage.alignV =...
来源: Laya_社区 发布时间: 20170803
...f"; txt.pos(60, 100); Laya.stage.bgColor = "#ffff00"; Laya.stage.addChild(txt); } } } 2017-10-25 0 0 分享 微博 QZONE 微信 Monica - 知识达人 赞同来自: LayaAir引擎初始化之前不能继承,也不能...
来源: Laya_社区 发布时间: 20171025
... Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; createInput(); } private function createInput():void { panel = new Panel(); ...
来源: Laya_社区 发布时间: 20180612