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

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

21. 请问怎么监听在IDE中创建UI中资源加载进度呢 [ 69%]

... 2017-02-25 12:24 你说这6张图片是通过loader加载,还是image图片通过skin方式自己加载? anran • 2017-02-25 12:26 @Laya_XS:是image图片通过skin方式自己加载 anran • 2017-02-25 12:28 @Laya_XS:这6张单独图片在IDE里有一个unpack.json,是不是...

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

22. laya.ui.ProgressBar [ 69%]

...方法获取。设置为true,性能有一定影响。 Sprite  bar : Image[read-only] 获取进度条象。 ProgressBar  bg : Image[read-only] 获取背景条象。 ProgressBar blendMode : String指定要使用混合模式。目前只支持"lighter"。Sprite bottom : Number 从组...

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

23. laya.ui.ProgressBar [ 68%]

...方法获取。设置为true,性能有一定影响。 Sprite  bar : Image[read-only] 获取进度条象。 ProgressBar  bg : Image[read-only] 获取背景条象。 ProgressBar blendMode : String指定要使用混合模式。目前只支持"lighter"。Sprite bottom : Number 从组...

来源: laya_api 发布时间: 20170929

24. laya.ui.AdvImage [ 68%]

...ocumentationAll Packages | All Classes | Index | Frames No Frames AdvImageProperties | Methods | Events Packagelaya.uiClasspublic class AdvImageInheritanceAdvImage Image UIComponent Sprite Node EventDispatcher Object 广告插件 Public Properties Hide Inherited Public Properties Show Inher...

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

25. Panel使用文档(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 67%]

...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

26. Panel使用文档(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 67%]

...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

27. List翻页效果怎么实现 [ 67%]

...ex: number): void { let img_rule = cell.getChildByName("img_rule") as Laya.Image; img_rule.skin = cell.dataSource let text_info = cell.getChildByName("text_des") as Laya.Text; let i18n = Laya.loader.getRes("config/i18n.json"); text_info.text = i18n[`tips_text$text_i18n$${1101 + index}`][ConfigInfo.l...

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

28. Panel使用文档(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 67%]

...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

29. 有一组图片怎么进行随机切换,laya上写跟之前写代码不一样 [ 66%]

...复 cuixueying 赞同来自: 先3张图片进行预加载,然后使用image组件其中一张图片进行load显示,切换显示即修改imageskin属性。 2017-01-09 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Todo 相...

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

30. laya list组件,如果有多页信息,怎么实现翻页丫?? [ 66%]

...ex: number): void { let img_rule = cell.getChildByName("img_rule") as Laya.Image; img_rule.skin = cell.dataSource let text_info = cell.getChildByName("text_des") as Laya.Text; let i18n = Laya.loader.getRes("config/i18n.json"); text_info.text = i18n[`tips_text$text_i18n$${1101 + index}`][ConfigInfo.l...

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