大约有 118 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
...); //适配处理 var frameWidth = 720 * Laya.stage.clientScaleX; var frameHeight = 1280 * Laya.stage.clientScaleY; var styleStr = "position: absolute; left: {0}px; top: {1}px; z-index: 100009;";//laya 的index是100000 var str = styleStr.format((laya.utils.Browser.width - frameWidth) * 0.5, (laya.u...
来源: Laya_社区 发布时间: 20170415
...6708 • 2017-09-29 11:30 @cuixu_xucui:你根据Laya.Browser.clientWidth和height,对比下自己的设计分辨率,就知道哪个方向被拉了多少了,,再拉回来就行了 cuixu_xucui • 2017-09-29 11:33 @qq502416708:好的,谢谢 qq502416708 • 2017-04-27 17:22 游戏项目不太...
来源: Laya_社区 发布时间: 20170427
...(txt); txt.x = (Laya.stage.width - txt.textWidth) / 2; txt.y = (Laya.stage.height-txt.textHeight) / 2; zkang5 • 2022-07-11 09:49 好的,谢谢
来源: Laya_社区 发布时间: 20220708
...ateMap(conf.fileName + ".json", new Rectangle(0, 0, Browser.width, Browser.height), Handler.create(this, this.onCompleteHandler)); } /** * 销毁当前地图 */ public destroy():void{ if (this._mTiledMap) this._mTiledMap.destroy(); if (this._mLevelConf) this._mLevelConf = null; this._mLoadState = ES...
来源: Laya_社区 发布时间: 20180529
... if(Laya.Browser.clientWidth>Laya.Browser.clientHeight){ console.log("横屏",this.lastClientWidth); if(Laya.stage.scaleMode != Laya.Stage.SCALE_SHOWALL){ ...
来源: Laya_社区 发布时间: 20190514
...象的中心,显示位置在可拖拽区域之内 sp.pivot(sp.width/2,sp.height/2); sp.pos(250,450); Laya.stage.addChild(sp); //为需要滑动的对象添加down,down下开始move,up时移除move和up事件 sp.on(Event.MOUSE_DOWN,this,onDown); Laya.stage.on(Event.MOUSE_UP,this,onUp); } privat...
来源: Laya_社区 发布时间: 20170106
...s = Laya.Browser.window.sharedCanvas; sharedCanvas.width = 0; sharedCanvas.height = 0; // let tempMatrix = message.matrix; // let matrix = new Laya.Matrix(); // matrix.a = tempMatrix.a; // matrix.b = tempMatrix.b; // matrix.c = tempMatrix.c; // matrix.d = tempMatrix.d; // Laya.stage._canvasTransform...
来源: Laya_社区 发布时间: 20180710
...'); videoElement.setAttribute('width', '100%'); videoElement.setAttribute('height', '100%'); // videoElement.playbackRate = 2;//加速播放 // 设置画布上的对齐参照物 reference = new Sprite(); this.addChild(reference); reference.pos(0, 0); reference.size(GoldConsts.contextWidth, GoldConst...
来源: Laya_社区 发布时间: 20180313
... var img:Image = new Image("../res/test.png"); img.height = 100; img.width = 100; Laya.stage.addChild(img); } 附件 : --> 2019-05-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20190529
...Laya.stage.addChild(ape); ape.x = Laya.stage.width / 2; ape.y = Laya.stage.height / 2; ape.scale(0.3,0.3); ape.pivot(628,613); Laya.Tween.to(ape,{rotation:360},60000); 其中转一圈的时间设置为60s或者更长,native下卡顿是非常明显的,但在web下非常流畅(native下反而效率低...
来源: Laya_社区 发布时间: 20180423