大约有 919 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0049 秒)
Laya3.0_api(529) Laya_社区(122) Laya2.0_api(101) laya_api(89) Laya3.0_文档(36) Laya2.0_文档(26) Laya2.0_示例(10) Laya_示例(6)
...cte); } /**根据选择tab的索引切换页面**/ private onSelecte(index:number):void{ //切换ViewStack子页面 this.comp.viewStack.selectedIndex=index; } } new ComponentDemo(); ``` 运行示例代码,效果如动图10所示。 ![动图10](img/1.gif)(动图10)
来源: Laya2.0_文档 发布时间: 20210715
...onSelect); this.owner.addChild(tab); return tab; } private onSelect(index: number): void { console.log("当前选择的标签页索引为 " + index); } } 运行效果如下动图所示: (动图2-1) Copyright ©Layabox 2022 all right reserved,powered by LayaAir Engine更新时间: 2024-10-1...
来源: Laya3.0_文档 发布时间: 20241014
...is, this.onChange); this.owner.addChild(hs); }); } private onChange(value: number): void { this.text.text = "滚动条的位置: value=" + value; } } 运行效果: (动图2-1) Copyright ©Layabox 2022 all right reserved,powered by LayaAir Engine更新时间: 2024-10-14 20:42:05 img{curso...
来源: Laya3.0_文档 发布时间: 20241014
...is, this.onChange); this.owner.addChild(vs); }); } private onChange(value: number): void { this.text.text = "滚动条的位置: value=" + value; } } 运行效果: (动图2-1) Copyright ©Layabox 2022 all right reserved,powered by LayaAir Engine更新时间: 2024-10-14 20:42:05 img{curso...
来源: Laya3.0_文档 发布时间: 20241014
...s Main { private _roomId = 0; constructor(roomId?: number) { this._roomId = roomId; Laya.init(750, 1218, Laya.WebGL); Laya.Browser.document.title = 'GG游戏; if (Laya.Browser.onPC) { ...
来源: Laya_社区 发布时间: 20181208
...内容 * */ public static copy(str: string ,isAlertMsgId?:number ,isAlertMsgInfo?:string): boolean{ let re: boolean; try { let input = document.createElement("input"); input.value = str; document.body.appen...
来源: Laya_社区 发布时间: 20181214
...abel(color: string, strokeColor: string): Laya.Label { const STROKE_WIDTH: number = 4; var label: Laya.Label = new Label(); label.font = "Microsoft YaHei"; label.text = "SAMPLE DEMO"; label.fontSize = 30; label.color = color; if (strokeColor) { label.stroke = STROKE_WIDTH; label.strokeColor = stroke...
来源: Laya3.0_文档 发布时间: 20241014
...{n=1}页"; //显示文本的初始化内容 } onStart(): void { let page: number = 1; Laya.timer.frameLoop(10, this, () => { page += 1; //在定时器中让变量page每次自增1 this.txt.setVar("n", page); //使用setVar方法,让text文本中变量n的值动态改变 }); } } 效果如动图1...
来源: Laya3.0_文档 发布时间: 20241014
...数据,模拟树状列表数据,拼接列表的数据源 for (let i: number = 0; i < 5; i++) { //拼接目录数据结构(item标签这里可以自己定义标签名,用什么开头就用什么结束,但是title这里,一定要对应列表渲染单元的label文本节点name) treeData...
来源: Laya3.0_文档 发布时间: 20241014
...ctor3; private lastPosition:Laya.Vector2; private distance:number = 0.0; private disVector1:Laya.Vector2; private disVector2:Laya.Vector2; private isTwoTouch:boolean; private first:boolean; private twoFirst:boolean; constructor(){ ...
来源: Laya_社区 发布时间: 20190531