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

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

231. 如何监听移动端软键盘的弹出和收回? [ 87%]

...点对软键盘执行弹出和收回状态的监听 如下列代码所示 private var textInput:TextField; textInput=new TextField(); textInput.type=TextFieldType.INPUT; textInput.border=true; textInput.multiline=true; textInput.wordWrap=true; textInput.width=200; textInput.x=100; textInput.y=200; a...

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

232. UI-List [ 87%]

...4.jpg"); data.push("../../res/ui/listskins/5.jpg"); } list.array = data; } private updateItem(cell: Item, index: number): void { cell.setImg(cell.dataSource); } private onSelect(index: number): void { console.log("当前选择的索引:" + index); } } import Box = Laya.Box; import Image = Laya.Ima...

来源: Laya_示例 发布时间: 20241124

233. 怎么对graphics画出来的图片进行鼠标点击拖动??? [ 87%]

...= Laya.Handler; import WebGL = Laya.WebGL; export class Interaction_Drag { private ApePath: string = "../laya/monkey2.png"; private ape: Sprite; private dragRegion: Rectangle; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya....

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

234. 按钮组件 · LayaAir3.0文档 · LAYABOX [ 87%]

...roperty } = Laya; @regClass() export class UI_Button extends Laya.Script { private COLUMNS: number = 2; private BUTTON_WIDTH: number = 147; private BUTTON_HEIGHT: number = 165 / 3; private HORIZONTAL_SPACING: number = 200; private VERTICAL_SPACING: number = 100; private xOffset: number; private yOff...

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

235. 鼠标交互-鼠标交互 [ 87%]

... Laya.Browser; import WebGL = Laya.WebGL; export class Interaction_Mouse { private txt: Text; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.st...

来源: Laya_示例 发布时间: 20241124

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

...laya.webgl.WebGL; public class UI_ScrollBar { /***垂直滚动条资源**/ private var skins:Array=["../../../../res/ui/vscroll.png", "../../../../res/ui/vscroll$bar.png", "../../../../res/ui/vscroll$down.png", "../../../../res/ui/vscroll$up.png"]; /***提示信息文本框**/ private var promptText...

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

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

...laya.webgl.WebGL; public class UI_ScrollBar { /***水平滚动条资源**/ private var skins:Array=["../../../../res/ui/hscroll.png", "../../../../res/ui/hscroll$bar.png", "../../../../res/ui/hscroll$down.png", "../../../../res/ui/hscroll$up.png"]; /***提示信息文本框**/ private var promptText...

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

238. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 87%]

...ss, property } = Laya; @regClass() export class Main extends Laya.Script { private tMap:Laya.TiledMap; onEnable() { //创建地图对象 this.tMap = new Laya.TiledMap(); //创建Rectangle实例,视口区域 var viewRect:Laya.Rectangle = new Laya.Rectangle(0, 0, Laya.stage.designWidth, Laya.stage.d...

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

239. 圆不跟谁 sprite 一起缩放? [ 87%]

... Browser.height, WebGL); this.CreateCircle(); // this.CreateRectangle(); } private firstSp: Laya.Sprite; private _adaptSp: Laya.Sprite; private _pointList : Point[]; private _rootSp : Laya.Sprite;  public CreateCircle() { this._rootSp = new Laya.Sprite();  this.firstSp = new Laya.Sprite(); this.fi...

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

240. 滤镜-模糊滤镜 [ 87%]

...ler = Laya.Handler; import WebGL = Laya.WebGL; export class Filters_Blur { private apePath: string = "res/apes/monkey2.png"; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.align...

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