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

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

101. 怎么给UI上的Label 的text赋值 [ 76%]

... 是你的UI Lancer • 2018-08-10 17:04 @Supermang42:我添加Laya.stage.addChild(this)之后,text才被赋值,但是把先前addChild()的内容给覆盖了,怎么办 Supermang42 • 2018-08-10 19:00 階層問題,你可以調整階層或者是位置放在不同地方上就不會覆蓋住...

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

102. 陀螺仪与加速计(TypeScript-LayaAir基础篇(TS)-硬件设备相关) [ 76%]

..."#FFFFFF"; this.info.size(Laya.stage.width, Laya.stage.height); Laya.stage.addChild(this.info); Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation); } private  onDeviceorientation(absolute: Boolean, rotationInfo: Laya.RotationInfo): void { this.info.text = "alpha:" + Math....

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

103. ToolTip鼠标悬停的使用 [ 76%]

...例化 //简单的鼠标提示 var button:Button=new Button(); Laya.stage.addChild(button); button.label="button One"; button.pos(100,100); button.skin="comp/button.png"; button.toolTip="我是button One!"; //自定义鼠标提示 var button2:Button=new Button(); Laya.stage.addChild(button2); button...

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

104. Sprite optimizeScrollRect = true 似乎有问题 [ 76%]

...(0, 0, this.width, this.height); this.mask.optimizeScrollRect = true; this.addChild(this.mask); } this.initContent = function () { this.content = new Box(); this.content.width = this.width; this.content.autoSize = true; this.content.y = this.scrollMode == DOWN_TO_TOP ? this.height : 1; this.mask.add...

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

105. laya.ui.ProgressBar_API3.0 [ 76%]

...;//设置 progressBar 的value值改变时执行的处理器。 Laya.stage.addChild(progressBar);//将 progressBar 添加到显示列表。 Laya.timer.once(3000, this, changeValue);//设定 3000ms(毫秒)后,执行函数changeValue。 } private function changeValue():void { trace("改变进度...

来源: Laya3.0_api 发布时间: 20231115

106. HTML文本 · LayaAir3.0文档 · LAYABOX [ 76%]

...yaBox</span><span>欢迎你的加入</span>"; Laya.stage.addChild(div); 运行效果: 3.2 同一个文本中设置字体、颜色不同 示例如下: var htmlD:HTMLDivElement = new HTMLDivElement(); Laya.stage.addChild(htmlD); htmlD.innerHTML = "<font style='fontSize:30' col...

来源: Laya3.0_文档 发布时间: 20230303

107. FlashDevelop中第一个程序“Hello Layabox”(ActionScript-LayaAir基础篇(AS3)-快速上手) [ 76%]

...fffff';         //将文本内容添加到舞台     Laya.stage.addChild(txt);   }  } } ``` ​ **步骤三**:完成代码编写后,使用之前定义的编译快捷键(Alt+F5),把AS3代码编译成HTML5。 ​ ![图片](img/10.png) ​ 图(10) ​ 编译完成后,编...

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

108. 如何用代码控制panel的vscroll滚动幅度 [ 76%]

...in='comp/vscroll.png'; panel.hScrollBarSkin='comp/hscroll.png'; Laya.stage.addChild(panel); //panel的子对象,,切忌要设置宽高,且宽高大于panel宽高 var bg:Sprite=new Sprite(); bg.loadImage("bg2.png",0,0,0,0,Handler.create(this,onLoadedImage,[panel])); bg.size(600,800); panel.addC...

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

109. laya.ui.Slider [ 76%]

...Slider(skin:String = null) 创建一个新的 Slider 类示例。 Slider addChild(node:Node):Node 添加子节点。 Node addChildAt(node:Node, index:int):Node 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node addComponent(type:Class):* 添加...

来源: Laya2.0_api 发布时间: 20190513

110. laya.particle.Particle2D [ 75%]

...ng:ParticleSetting) 创建一个新的 Particle2D 类实例。 Particle2D addChild(node:Node):Node 添加子节点。 Node addChildAt(node:Node, index:int):Node 添加子节点到指定的索引位置。 Node addChildren(... args):void 批量增加子节点 Node  advanceTime(passedTime:Number =...

来源: laya_api 发布时间: 20170929