大约有 617 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(371) Laya3.0_api(64) Laya2.0_api(59) laya_api(55) Laya2.0_文档(24) Laya2.0_示例(19) Laya_示例(19) Laya3.0_文档(6)
...ckground(){ Background.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("res/background.png"); this.addChild(this.bg1); } Laya.class(Background,"Background",_super); window.Background=Background; return Background; })(Laya.Sprite); 2017-04-20 0 2 分享 微博 QZONE 微信 为什么被...
来源: Laya_社区 发布时间: 20170420
...der.onload=function () { this.headIcon.loadImage(this.result); 或者 this.headIcon.skin=this.result; } reader.readAsDataURL(file); } 2017-08-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20170808
...s.btnBox); for(var i = 0; i < 5; i++){ var btn = new Laya.Sprite(); btn.loadImage("Key.jpg",i*100,800,100,60); btn.id= i; btns.push(btn); this.btnBox.addChild(btn); console.log(btn.id); } for(var i = 0; i < 5; i++){ btns[i].on(Laya.Event.CLICK,this,judge,[i]); } function judge(aa){ c...
来源: Laya_社区 发布时间: 20180817
... 动画(1)与在 Flash 中“导出png序列”后使用 Animation 的 loadImages() 做成序列动画(2);导出png序列后多张图片的体积要比swf文 件大不少,这两者单从资源占用方面看 swf 似乎更有优势,但感觉 Animation 序列动画更方便控制些。...
来源: Laya_社区 发布时间: 20170929
...width<100&&height<100){ var bgImg = new Laya.Sprite(); bgImg.loadImage(data); Laya.stage.addChild(bgImg) }else{ console.log("图片超标"+width+"--"+height); } }; img.src =data; } }; 2019-01-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20190129
...ckGround(){ BackGround.super(this); this.bg1 = new Laya.Sprite(); this.bg1.loadImage("war/background.png"); this.addChild(this.bg1); } Laya.class(BackGround,"BackGround",_super); return BackGround; })(Laya.Sprite);报错 "TypeError: this.addChild is not a function at BackGround (file:///D:/test...
来源: Laya_社区 发布时间: 20181003
...ildhood/EARLY_GAME_001/bin/libs/laya.core.js:11178:32) at Graphics.__proto.loadImage (file:///E:/EarlyChildhood/EARLY_GAME_001/bin/libs/laya.core.js:1808:19) at Function.Animation.createFrames (file:///E:/EarlyChildhood/EARLY_GAME_001/bin/libs/laya.core.js:16442:8) at new Character (file:///E:/Early...
来源: Laya_社区 发布时间: 20170206
...t;</g></svg>" var sp: Laya.Sprite = new Laya.Sprite(); sp.loadImage(data, 0, 0, 1280, 720,Handler.create(this,()=>{ sp.graphics.getBoundPoints().forEach(e=>{ console.log("_getBoundPointsM:",e); }); })); sp.x=0; sp.y=0; this._sptse=sp; Laya.stage.addChild(sp);
来源: Laya_社区 发布时间: 20170423
...示一张小图,那么就没有必要用以上的方式了,直接使用loadImage加载即可。如果是人物行走的话,大图就没有移除的必要了,因为大图下的小图每次都会用到。 2、镜像翻转直接scaleX=-1或者scaleY=-1即可实现,无需复杂操作。
来源: Laya_社区 发布时间: 20160506
...box.com/doc/?nav=zh-js-1-3-1 //data.head_img:头像的url路径 head_img.loadImage(data.head_img, Laya.Handler.create(head_img, function () { this.height = this.width = 77; var cMask = new Laya.Sprite();//创建遮罩对象 var r = 38.5; //遮罩圆形半...
来源: Laya_社区 发布时间: 20181119