大约有 100 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)
...load的时间) yes没毛病 3. sp.loadImage('xxx.png',0,0,0,0,callback) sp.size(50,50);调用方式 能否获取 立即调用宽高属性 yes 回调 yes 延时(能够确保load的时间) yes没毛病 4. sp.loadImage('xxx.png',0,0,100,100,callback) sp.size(50,50);调用方式 能否获取 立即调...
来源: Laya_社区 发布时间: 20171121
... top_rect.x = 0; top_rect.y = 0; top_rect.size(100, 100); top_rect.graphics.drawRect(0, 0, 100, 100, "#0000FF", "#000000", 1); Laya.stage.addChild(top_rect); let rect_bottom: Laya.Sprite = new Laya.Sprite(); ...
来源: Laya_社区 发布时间: 20190730
... processTimer = ProcessTimer.create(img,new laya.maths.Size(70,70)); processTimer.setPercentage(100); processTimer.setType(ProcessTimer.PROGRESS_TIMER_TYPE_RECT); processTimer.setPosition(0,0); ...
来源: Laya_社区 发布时间: 20180404
Sprite中的width,height和size(width,height)感觉没作用啊 我的图片是800*600,懒得修改图片,想在程序中直接修改图片显示大小,可是貌似显示的还是800*600。width,height,size(width,height)是我理解问题,还是我写错了呢。。。。 ...
来源: Laya_社区 发布时间: 20160711
加上size设置后,精灵不能点击. 这两个函数基本上是一样的,但是img是可以点击,f不能点击.但是吧size那行代码注释掉就正常了. function createImg(){ var img = new Laya.Sprite(); var r = Math.random(); var s = r > 0.66 ? "img/flower1.jpg" : r > 0.33 ? "img/...
来源: Laya_社区 发布时间: 20180412
...ialias = true; Laya.init(0, 0,true); Laya.stage.bgColor = "#000000"; ChangeSize(); Laya.timer.once(1000,this,function start():void{ Laya.stage.on(Event.RESIZE,this,onResize); }); } protected function HengPing(): void { trace("设置横屏" ); var layaCanvas:Object = Browser.getElementById("layaCa...
来源: Laya_社区 发布时间: 20190520
...container.graphics.drawRect(0,0,640,1136,'#ff0000'); container.size(640,1136) Laya.stage.addChild(container); var bg2Sprite = new Sprite(); bg2Sprite.graphics.drawRect(0,0,640,1136,'#ff0000'); bg2Sprite.size(640,1136...
来源: Laya_社区 发布时间: 20170223
...= new Sprite(); containr.graphics.drawRect(0,0,200,200,'#ff0000') containr.size(200,200); containr.pivot(100,100); containr.x = 200 containr.y = 200 senceLayer.addChild(containr); var rect = new Rectangle(0,0,200,200); containr.scrollRect = rect; var itemContainr = new Sprite(); itemContainr.size(15...
来源: Laya_社区 发布时间: 20170329
...adImage("../laya/assets/comp/textinput.png");//反应没有问题 drawyuan.size(100, 100); var x = Math.random() * Laya.stage.width; var y = Math.random() * Laya.stage.height; console.log(x + "" + y); drawyuan.pos(x,y); return drawyuan; } 2017-09-05 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20170905
...Laya.List(); list.bgColor ="#000000"; list.size(100,300); list.repeatX =1; list.repeatY =this.arr.length; list.itemRender =Item; //Item 为继承BOX类 list.vScrollBarSkin =""; Laya.stage....
来源: Laya_社区 发布时间: 20190522