大约有 258 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
...el'); contentText.text = value; contentText.color = '#fff'; // contentText.bgColor = '#141111'; contentText.padding = '0,20,0,20'; contentText.leading = '6'; contentText.fontSize = fontSize+2; contentText.valign = 'middle'; contentText.height = 0; contentText.wordWrap = true; contentText.width = par...
来源: Laya_社区 发布时间: 20180302
...H = "center"; Laya.stage.alignV = "middle"; Laya.stage.bgColor = "#000000"; Laya.stage.frameRate = Laya.Stage.FRAME_MOUSE;
来源: Laya_社区 发布时间: 20170724
... //初始化引擎 Laya.init(600, 400); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/ui/boos.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { // //创建一个Animation实例 // var tl = ne...
来源: Laya_社区 发布时间: 20190708
...nction LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; //预加载button的资源,用于tab的项皮肤 Laya.loader.load("button-4.png",Handler.create(this,onLoaded)); } private function onLoaded():void { //添加tab容器 var tab:Tab=new Tab(); Laya.stage.ad...
来源: Laya_社区 发布时间: 20170626
...ublic function LayaSample() { Laya.init(640, 1136, WebGL); Laya.stage.bgColor = "#CCBBAA"; var panel = new Panel(); Laya.stage.addChild(panel); panel.size(460, 704); rule_ct = new Sprite(); Laya.stage.addChild(rule_ct); rule_ct.loadImage("rule_txt.png", 0, 0, 460, 0, Handler.crea...
来源: Laya_社区 发布时间: 20170215
...scaleMode = "fixedwidth"; Laya.stage.scaleMode = "fixedheight"; Laya.stage.bgColor = "#ff0000"; Laya.stage.alignH = "center"; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; createCantralRect(); })(); function createCantralRect() { rect = new Sprite(); rect.graphics.drawRect(-100, -100, 200, 200, "gray...
来源: Laya_社区 发布时间: 20170206
... var ape ; function Init() { Laya.init(400, 800, Laya.WebGL); Laya.stage.bgColor = "#999911"; ape = new Laya.Sprite(); Laya.stage.addChild(ape); var ag = ["lsd",ape,1,"str"]; ape.loadImage("../laya/assets/res/to1.png",0,0,0,0,Laya.Handler.create(this,graphicsImg,ag)); graphicsImg(ag); }...
来源: Laya_社区 发布时间: 20180510
....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; showApe(); })(); function showApe() { // 方法1:使用loadImage var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey2.png"); let m = new Laya.Matrix() m.skew(-0.25, 0)...
来源: Laya_社区 发布时间: 20170609
...ser.clientHeight, Laya.WebGL); var stage = Laya.stage; stage.bgColor = "#00ffff"; stage.alignH = "center"; stage.alignV = "middle"; stage.scaleMode = "showall"; })(); 2017-10-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20171012
....alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(AniConfPath, Handler.create(this, createAnimation), null, Loader.ATLAS); } private function createAnimation(_e:*=null):void { var ani:Animation = new Animation(); ani.loadAtlas(AniConfPat...
来源: Laya_社区 发布时间: 20170628