大约有 264 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(200) Laya2.0_示例(20) Laya_示例(19) Laya2.0_文档(13) Laya3.0_api(5) Laya3.0_文档(3) laya_api(2) Laya2.0_api(2)
...期的但是导到手机上表现效果就不一致了 skillMask.graphics.drawRect(0, 0, t.width, t.height, "#ffffff"); skillMask.x = 0; skillMask.y = 0; skill.mask = skillMask; 附件 : --> 2017-04-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...
来源: Laya_社区 发布时间: 20170411
...页面所在的位置,在此设置设置一个背景色 bgPage.graphics.drawRect(0, 0, 300, 300, "#ffcccc"); //添加到stage Laya.stage.addChild(bgPage); //实例化MonkeyPageUI页面 var monkeyPage: ui.MonkeyPageUI = new ui.MonkeyPageUI(); //为了能够清楚的看到这个页面所在的位置...
来源: Laya2.0_文档 发布时间: 20210715
...p/map.json",viewRect); // 精灵 var sp = new Laya.Sprite(); sp.graphics.drawRect(0, 0, 100, 100, "#FF0000", "#0000FF", 1) sp.zOrder = 1000; 请问这里如何把精灵添加到地图中? 看文档没看明白啊, 其他回答仿写都无效果. 2018-07-21 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20180721
... 1 个回复 Laya_XS 赞同来自: 你可以直接调用image的graphics的drawrect来给图片绘制一个矩形区域,不知道这样能不能满足你的需求,除了绘制矩形区域还可以绘制一个图片当做背景,调用drawtexture。 2017-12-20 0 3 分享 微博 QZONE 微信 为...
来源: Laya_社区 发布时间: 20171220
...r(); this.init(); } init() { this.bg = new Laya.Sprite(); this.bg.graphics.drawRect(0, 0, 200, 200, '#ccc'); this.addChild(this.bg); this.htmlTxt = new Laya.HTMLDivElement(); this.htmlTxt.style.fontSize = 20; this.htmlTxt.style.width = 200; this.htmlTxt.style.borderColor = '#000'; this.htmlTxt.style...
来源: Laya_社区 发布时间: 20210107
... ui_hpBarMask.graphics.clear(); ui_hpBarMask.graphics.drawRect(0, 0, 154, 12, 0xffffff); this.txt_pro.displayObject.mask = ui_hpBarMask; 附件 : --> 2022-05-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20220531
...m.__super.call(this);//初始化父类 * this.graphics.drawRect(0, 0, 100, 20, "#ff0000"); * var label = new laya.ui.Label();//创建一个 Label 类的实例对象 label 。 * label.text = "100000";//设置 label 的文本内容。 ...
来源: Laya_社区 发布时间: 20180426
...ayaAirTest() { Laya.init(550,400); var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FFFF00"); Laya.stage.addChild(sp); sp.size(1000,100); sp.on(Event.CLICK,this,onClick); } private function onClick():void { Browser.window.location.href="https://www.baidu.com"; } 2016-12-15 0 0 分享 ...
来源: Laya_社区 发布时间: 20161215
...l++) { var b = qrcode.isDark(row, col); if (b) { var flag = 3; sc.graphics.drawRect(col * flag, row * flag, flag, flag, '#ffffff'); qrcodeHome.addChild(sc); } } }这里我们就生成了一个二维码,可以控制颜色和大小 附件 : --> qrcode.zip 2019-11-04 添加评论 免费帖 --> 分享...
来源: Laya_社区 发布时间: 20191104
...addedToStage():void{ this.__mask = new Laya.Sprite(); this.__mask.graphics.drawRect(0,0,this.img_bar.width,this.img_bar.height,"#000000"); this.setValue(0); } private setValue(v:number):void{ this.__mask.scaleX = v; this.img_bar.mask = null;//第二次设置mask的时候必须给原对象的mask置...
来源: Laya_社区 发布时间: 20170320