大约有 37 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0028 秒)
# Image 组件参考 ## 一、通过LayaAirIDE创建Image组件 ### 1.1 创建image Image 是 UI 里最常见的显示图像的组件,用来显示位图图像。可以设置 Image 组件的 skin 属性来改变 Image 组件呈现的图像。Image 组件支持九宫格数据设定,用于实...
来源: Laya2.0_文档 发布时间: 20210715
# Image 组件参考 ## 一、通过LayaAirIDE创建Image组件 ### 1.1 创建image Image 是 UI 里最常见的显示图像的组件,用来显示位图图像。可以设置 Image 组件的 skin 属性来改变 Image 组件呈现的图像。Image 组件支持九宫格数据设定,用于实...
来源: Laya2.0_文档 发布时间: 20210714
# Image 组件参考 ## 一、通过LayaAirIDE创建Image组件 ### 1.1 创建image Image 是 UI 里最常见的显示图像的组件,用来显示位图图像。可以设置 Image 组件的 skin 属性来改变 Image 组件呈现的图像。Image 组件支持九宫格数据设定,用于实...
来源: Laya2.0_文档 发布时间: 20210714
...Stage = Laya.Stage; var Text = Laya.Text; var Image = Laya.Image; //适配模式 var modes = "exactfit"; //全局文本信息 var txt; (function() { ...
来源: Laya2.0_文档 发布时间: 20200307
....display.Stage; import laya.display.Text; import laya.ui.Image; public class SmartScale_T { //全局文本信息 private var txt:Text; public function SmartScale_T(...
来源: Laya2.0_文档 发布时间: 20200307
...script module laya { import Text = Laya.Text; import Image = Laya.Image; import Sprite = Laya.Sprite; export class SmartScale_T { //适配模式 private modes:string = "exactfit"; //全局文本信...
来源: Laya2.0_文档 发布时间: 20200307
...mg\5.gif)(图5) **示例代码:** ```typescript package { import laya.ui.Image; import laya.ui.Panel; import laya.utils.Handler; public class PanelTest { public function PanelTest() { //初始化引擎 Laya.init(800,600); //预加载所需资源 Laya.loader.load("res/atlas/comp.atlas",Handler.crea...
来源: Laya2.0_文档 发布时间: 20210715
...l.png"; //将panel添加到stage上 Laya.stage.addChild(panel); //实例化Image组件 var img: Laya.Image = new Laya.Image(); //给image添加皮肤 img.skin = "comp/image.png"; //将image添加到panel组件中 panel.addChild(img); } } new PanelTest(); ```
来源: Laya2.0_文档 发布时间: 20210715
...l.png"; //将panel添加到stage上 Laya.stage.addChild(panel); //实例化Image组件 var img = new Laya.Image(); //给image添加皮肤 img.skin = "comp/image.png"; //将image添加到panel组件中 panel.addChild(img); } ```
来源: Laya2.0_文档 发布时间: 20210715
...log("当前选择的索引:" + index); } } import Box = Laya.Box; import Image = Laya.Image; class Item extends Box { public static WID: number = 373; public static HEI: number = 85; private img: Image; constructor(){ super(); this.size(Item.WID, Item.HEI); this.img = new Image(); this.addChild(th...
来源: Laya2.0_文档 发布时间: 20210715