• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 976 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)

141. UI-Dialog [ 71%]

...g); let button = new Button(assets[1]); button.name = Dialog.CLOSE; button.pos(DIALOG_WIDTH - CLOSE_BTN_WIDTH - CLOSE_BTN_PADDING, CLOSE_BTN_PADDING); dialog.addChild(button); dialog.dragArea = "0,0," + DIALOG_WIDTH + "," + DIALOG_HEIGHT; dialog.show(); } } new UI_Dialog();module laya { import Stage...

来源: Laya2.0_示例 发布时间: 20241117

142. 屏幕适配的缩放模式详解(TypeScript-2D基础篇(TS)-屏幕适配) [ 71%]

...es+") ";         this.txt.bold = true;         this.txt.pos(10, 350);         this.txt.fontSize = 60;         this.txt.color   = "#fff000";         Laya.stage.addChild(this.txt);         }       } } new laya.SmartScale_T(); ``` ### 二...

来源: Laya2.0_文档 发布时间: 20200307

143. 文本在屏幕不垂直居中 [ 71%]

...xt(); tx.text='这是一个demo'; tx.color='#ffffff'; tx.fontSize="20"; tx.pos(Laya.stage.width /2 ,Laya.stage.height /2); tx.pivot(tx.width /2 ,tx.height / 2); tx.align="center"; tx.valign="middle"; Laya.stage.addChild(tx); } })()   2017-11-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

来源: Laya_社区 发布时间: 20171115

144. 关于button的click监听 [ 71%]

...click监听 let btn:Laya.Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");});   请问 这样监听不到button的点击事件吗?如果我创建一个ui.view  a  a.on 也监听不到吗 20...

来源: Laya_社区 发布时间: 20171128

145. 设置pivot后,精灵位置显示位置不正确 [ 71%]

...置显示位置不正确 我的版本是1.7.14,设置了sprite的pivot和pos,结果位置不正确 // 程序入口 class GameMain { private sp: Laya.Sprite; constructor() { Laya.init(2000, 1500); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" this.sp = new Laya.Sprite(); let width = 660 ...

来源: Laya_社区 发布时间: 20171230

146. pivot 设置后 影响 元素大小??????????????? [ 70%]

...  page[1].rotation=ps[1]+180;                     page[1].pos(_core.p1.x,_core.p1.y);                              }else if(idx==4){                             page[1].pivot(0,200);                     page[1].rotation=0;//ps[0...

来源: Laya_社区 发布时间: 20161214

147. Image和HtmlImageElement加载同一张图会显示不出来 [ 70%]

... // 先Image var img:Image = new Image(); img.skin = "res/test1.png"; img.pos(100, 100); // 再Html var html = new HTMLDivElement(); html.innerHTML = "<img src='res/test1.png'/>"; html.pos(150, 100); Laya.stage.addChild(img); Laya.stage.addChild(html); 按照这个顺序,图片test1.png加...

来源: Laya_社区 发布时间: 20181219

148. 小米手机三指点击后,后续获得的触摸点失效 [ 70%]

...= 0; i < data.touches.length; i++) { str += ` {${i} : ${data.touches[i].pos.toString()}}`; } } console.log("drag mouse down", str); }); Laya.stage.on(Laya.Event.MOUSE_UP, this, (data: Laya.Event) => { let str = ""; if (data.touches) { for (let i = 0; i < data.touches.length; i++) { str += `...

来源: Laya_社区 发布时间: 20230823

149. 显示与切换图片(TypeScript-LayaAir基础篇(TS)-位图) [ 70%]

...): void { // 方法1:使用loadImage var ape: Sprite = new Sprite(); ape.pos(100,50); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); } } } new laya.Sprite_DisplayImage(); ``` 在示例代码里,“`100,50`”是图片的显示坐标信息。示例代码运行效果如图2...

来源: Laya2.0_文档 发布时间: 20210715

150. Sprite-切换纹理 [ 70%]

....Sprite(); Laya.stage.addChild(this.ape); this.ape.pivot(55, 72); this.ape.pos(Laya.stage.width / 2, Laya.stage.height / 2); this.switchTexture(); this.ape.on(Laya.Event.CLICK, this, this.switchTexture); } switchTexture() { let monkey = (this.flag = !this.flag) ? monkey1Res : monkey2Res; this.ape.gr...

来源: Laya2.0_示例 发布时间: 20241117