大约有 264 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(200) Laya2.0_示例(20) Laya_示例(19) Laya2.0_文档(13) Laya3.0_api(5) Laya3.0_文档(3) laya_api(2) Laya2.0_api(2)
...id { this.nsp=new Laya.Sprite(); this.nsp.graphics.drawRect(0,0,1600,1600,"#ff0000"); this.nsp.mouseThrough=true; Laya.stage.addChild(this.nsp); this.nsp.on(Laya.Event.CLICK,this,this.drawImg,null) } drawImg(e:Event=null):void{ ...
来源: Laya_社区 发布时间: 20220809
...ya.stage.addChild(reference); reference.size(640, 960); reference.graphics.drawRect(0, 0, reference.width, reference.height, "#CCCCCC"); // 每次舞台尺寸变更时,都会调用Utils.fitDOMElementInArea设置Video的位置,对齐的位置和refence重合 Laya.stage.on(Laya.Event.RESIZE, this,...
来源: Laya_社区 发布时间: 20180119
...= 490, h = 770; bimgBox.graphics.drawRect(0, 0, w, h, "#FF7F50"); var rect = new Rectangle(0,0,200,200); bimgBox.scrollRect = rect; bimgBox.optimizeScrollRect = true; 这是我的调用方法,麻...
来源: Laya_社区 发布时间: 20170526
...c function testDraw():void { var sp:Sprite; sp = new Sprite(); sp.graphics.drawRect(0, 0, 100, 100, "#ff0000"); Laya.stage.addChild(sp); sp.pos(100, 100); drawToc(sp); } private function drawToc(sp:Sprite):void { var canvas:HTMLCanvas= sp.drawToCanvas(100, 100, 0, 0); var ct:*= canvas.getContext("2d...
来源: Laya_社区 发布时间: 20170417
...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
...= 那还放在ide里让我流口水。。 sheen • 2018-01-15 12:39 而且drawRect超过一定数量就会报错。。fillText和DrawLine都没有问题。。 qian • 2018-01-15 15:27 你用最新(1.7.15beta)写一个例子 要是还不行的话麻烦上传一下 这边帮你看看 sheen • 2...
来源: Laya_社区 发布时间: 20180112
...cuixueying • 2016-12-01 18:15 var area:HitArea = new HitArea(); area.hit.drawRect(0, 0, 500, 500, "#ff0000"); area.unHit.drawCircle(250, 250, 50, "#ff0000"); box.hitArea = area; 你绘制一个多边形区域为hit即可 13339103263 • 2016-12-02 13:59 @cuixueying:好的,谢...
来源: Laya_社区 发布时间: 20161114
...//sprite 无问题 var panel = new displayContainerClass(); panel.graphics.drawRect(0,0,200,200,"#ffffff"); panel.size(200,200); this.addChild(panel); var panelChild:Laya.Sprite = new Laya.Sprite(); panelChild.graphics.drawCircle(0,0,50,"#ffbb88"); panelChild.pos(100,100); panel.addChild(panelChild)...
来源: Laya_社区 发布时间: 20170814
...GL); Laya.stage.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,300,"#000fff"); Laya.stage.addChild(sp); sp.size(200,300); sp.pivot(sp.width/2,sp.height/2); sp.pos(200,200); Laya.timer.frameLoop(1,this,onLoopRotation,[sp]); } private function onLoopRotation(sp:Sprite):voi...
来源: Laya_社区 发布时间: 20170830
... button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); r...
来源: Laya_社区 发布时间: 20201203