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

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

491. VScrollBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 69%]

...动条。 **示例代码:** ```javascript package { import laya.display.Stage; import laya.display.Text; import laya.ui.HScrollBar; import laya.ui.ScrollBar; import laya.ui.VScrollBar; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_ScrollBar { /***垂直滚动条资源**/ priv...

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

492. HScrollBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 69%]

...rollBar。 **示例代码:** ```javascript package { import laya.display.Stage; import laya.display.Text; import laya.ui.HScrollBar; import laya.ui.ScrollBar; import laya.ui.VScrollBar; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_ScrollBar { /***水平滚动条资源**/ pri...

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

493. laya.ui.VBox_API3.0 [ 69%]

...Enable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray height hideFlags hitArea is3D left mask mouseEnabled mouseX mouseY numChildren parent pivotX pivotY right rotation scaleX scaleY scene scro...

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

494. laya.ui.HBox_API3.0 [ 69%]

...Enable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray height hideFlags hitArea is3D left mask mouseEnabled mouseX mouseY numChildren parent pivotX pivotY right rotation scaleX scaleY scene scro...

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

495. 分享:如何将舞台的背景颜色设置为透明(WebGL和Canvas下) [ 69%]

...初始化引擎 Laya.init(800,600,WebGL); //设置背景颜色为none Laya.stage.bgColor = "none";canvas下设置背景透明代码://初始化引擎 Laya.init(800,600); //设置背景颜色为null Laya.stage.bgColor = null; 2017-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

496. laya.ui.WXOpenDataViewer_API3.0 [ 69%]

...Enable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray height hideFlags hitArea is3D left mask mouseEnabled mouseX mouseY numChildren parent pivotX pivotY right rotation scaleX scaleY scene scro...

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

497. 【简单跑酷--JS版】---Lv.6 终篇 [ 69%]

...y = 32 * 4; this.addChild(this.player); //监听 按下 弹起 事件 Laya.stage.on(laya.events.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(laya.events.Event.MOUSE_UP, this, this.onMouseUp); //创建一个帧循环处理函数 Laya.timer.frameLoop(1, this, this.onLoop); } _proto.onLoop ...

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

498. Native(android)下创建二维码并显示在页面上 [ 69%]

...QrCode;             img.pos(100, 300);             Laya.stage.addChild(img);         }     }      // androidplat,创建二维码     createQrCode(url:string, width:number, height:number):string {         return this._bridge.call("createQrCode", ur...

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

499. laya.ui.AdvImage_API3.0 [ 69%]

...Enable dataSource destroyed disabled displayHeight displayWidth displayedInStage drawCallOptimize filters globalRotation globalScaleX globalScaleY graphics gray group height hideFlags hitArea is3D left mask mouseEnabled mouseX mouseY numChildren parent pivotX pivotY right rotation scaleX scaleY scen...

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

500. 在一个矩形之上画另一个矩形,只显示一个矩形 [ 68%]

... var boxHeight = 500; //串盒子 this.chuanBox = new Laya.Rectangle(Laya.stage.width - boxWidth >> 1, Laya.stage.height - boxHeight - 10, boxWidth, boxHeight); //画出盒子 Laya.stage.graphics.drawRect( this.chuanBox.x, this.chuanBox.y, this.chuanBox.width, this.chuanBox.height, "#FFFFEE", ...

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