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

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

1. 请问一下new 一个Image和ui界面里组件的Image有什么区别?急!! [ 100%]

请问一下new 一个Image和ui界面里组件的Image有什么区别?急!! 因为我想用laya里的对象池。。对于动态创建的时候,可以用Laya.Pool.getItemByClass("img", Laya.Image)     但是如果是在ui界面,编辑模式里创建好的组件Image,这里的Image...

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

2. UI-Image [ 98%]

...peScript三种开发语言、LayaAirIDE让项目开发更高效。class UI_Image { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV =...

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

3. Image [ 98%]

Image var img___=new Image(); html的 image标签 怎么才能转换成 laya.texture     var img___=new Image();         img___.src="res/card/select_main_card_bg.png"         img___.onload = function(){             var image = new Laya.Image()             image.source = img___...

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

4. UI-Image [ 97%]

...AirIDE让项目开发更高效。(function() { var Stage = Laya.Stage; var Image = Laya.Image; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleM...

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

5. Uncaught TypeError: Cannot read property '_tf' of null [ 97%]

...关的链接 提交 2 个回复 nieyiwei 赞同来自: private var _guideImage:Image;   public function main():void {   _guideImage = new Image();   _guideImage.source = Loader.getRes("source/png/ui/1/guideImg.png");     tweenGuide1(_guideImage );     Tween.clearAll(_guideImage);   _guideIm...

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

6. 屏幕适配-屏幕适配 [ 97%]

... Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Handler = Laya.Handler, Image = Laya.Image, Text = Laya.Text; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); //设置适配模式 Laya.stage.scaleMode = "noscale"; //设置横竖屏 Laya.stage.screenMode = Stage.SCREEN_HORIZON...

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

7. 屏幕适配-屏幕适配 [ 96%]

... var Stage = Laya.Stage; var Text = Laya.Text; var Event = Laya.Event; var Image = Laya.Image; var WebGL = Laya.WebGL; //所有适配模式 var modes = ["noscale", "exactfit", "showall", "noborder", "full", "fixedwidth", "fixedheight"]; //当前适配模式索引 var index = 0; //全局文本信息 ...

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

8. UI-Dialog [ 95%]

...onSkinLoadComplete)); } onSkinLoadComplete() { const Dialog = Laya.Dialog, Image = Laya.Image, Button = Laya.Button; let dialog = new Dialog(); let bg = new Image(assets[0]); dialog.addChild(bg); let button = new Button(assets[1]); button.name = Dialog.CLOSE; button.pos(DIALOG_WIDTH - CLOSE_BTN_WIDT...

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

9. UI-Dialog [ 94%]

...tage = Laya.Stage; var Button = Laya.Button; var Dialog = Laya.Dialog; var Image = Laya.Image; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var DIALOG_WIDTH = 220; var DIALOG_HEIGHT = 275; var CLOSE_BTN_WIDTH = 43; var CLOSE_BTN_PADDING = 5; var assets; (function() { // 不支持WebGL时自...

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

10. UI-List [ 94%]

...nst Box = Laya.Box; class Item extends Box { constructor(){ super(); const Image = Laya.Image; this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); } setImg(src) { this.img.skin = src; } } class UI_List { constructor() { const Browser = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya...

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