大约有 632 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0040 秒)
Laya_社区(254) Laya2.0_示例(114) Laya2.0_文档(94) Laya_示例(92) Laya3.0_api(34) Laya2.0_api(21) Laya3.0_文档(15) laya_api(8)
...zh-js-3-4-1 //初始化引擎Laya.init(600, 400, Laya.WebGL);Laya.stage.bgColor = "#ffcccc";var data = "data:image/svg+xml," + '<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">' +'<foreignObject width="100%" height="100%">' +'<div xmlns="http://www.w3.org/1999/xhtm...
来源: Laya_社区 发布时间: 20190306
...放 Laya.stage.scaleMode = Stage.SCALE_SHOWALL; //背景颜色 Laya.stage.bgColor = "#232628"; //创建图片 createImage(); } /***创建图片***/ private function createImage():void { //实例化图片 var img:Image = new Image("../../../../res/ui/dialog (3).png"); //设置位置 img.pos(165, 62.5...
来源: Laya2.0_文档 发布时间: 20210714
...ge.scaleMode = "showall"; Laya.stage.screenMode = "horizontal"; Laya.stage.bgColor = "#0080ff"; Laya.stage.frameRate = Laya.Stage.FRAME_FAST; }; </script> </body> 2018-07-09 0 1 分享 微博 QZONE 微信 139*****106 赞同来自: 测试demo,chrome浏览器中iphone模拟器可以...
来源: Laya_社区 发布时间: 20180709
...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; setup(); })(); function setup() { Laya.loader.load("../../res/ui/dialog (3).png", Laya.Handler.create(this, function(){ var dialog = new Image("../../res/ui/dialog (3).png"); dialo...
来源: Laya_社区 发布时间: 20180201
...显示起点位置X,Y txt.pos(60,100); //设置舞台背景色 Laya.stage.bgColor = '#23238E'; //将文本内容添加到舞台 Laya.stage.addChild(txt); 2017-10-19 0 0 分享 微博 QZONE 微信 keailuo 赞同来自: 这个是整个demo hello.rar 2017-10-19 0 0 分享 微博 QZONE 微信 为什么...
来源: Laya_社区 发布时间: 20171019
...n(){ //初始化引擎 Laya.init(800,600); //设置背景颜色 Laya.stage.bgColor = "#ffcccc"; //加载资源 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS) })(); function onLoaded(){ //实例化 var tempBG=new background(); Laya.stage.addChild(te...
来源: Laya_社区 发布时间: 20180129
...ar bgRes:String; public function Main() { Laya.init(2048,1536); Laya.stage.bgColor = "#333333"; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; bgRes = "res/bg.jpg"; addPic("res/bg.jpg", 0, 0); var txt:Text = new Text(); txt.text = "Fishing Game"; txt.color = "#FFFFFF"; txt.fontSize = 60; txt.stroke = 5...
来源: Laya_社区 发布时间: 20170522
...Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Laya.loader.load(["res/ui/progressBar.png", "res/ui/progressBar$bar.png"], Handler.create(this, onLoadComplete)); })(); function onLoadComplete() { progressBar = new ProgressBar("res/ui/progressBar.png");...
来源: Laya2.0_文档 发布时间: 20210715
... { Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.bgColor = "#232628"; Laya.stage.scaleMode = Stage.SCALE_FULL; Laya.stage.screenMode = Stage.SCREEN_NONE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.loader.load("assets/bg.jpg", Handle...
来源: Laya_社区 发布时间: 20171124
...er.width, Browser.height,WebGL); Laya.stage.scaleMode = "full"; Laya.stage.bgColor = "#232628"; //画一个圆 sprite = new Sprite(); sprite.pos(500,500); var graphics:Graphics = new Graphics(); graphics.drawCircle(0,0,100,"#00CC33"); sprite.graphics = graphics; Laya.stage.addChild(sprite); //画一...
来源: Laya_社区 发布时间: 20190515