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

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

31. 当使用Image作为一个对象的遮罩时,设置Image的ScaleX为0时遮罩失效! [ 87%]

...ull)); } private loaded():void{ var img:Laya.Image = new Laya.Image(); img.skin = "comp/img_pro.png"; Laya.stage.addChild(img); var imgMask:Laya.Image = new Laya.Image(); imgMask.skin = img.skin; imgMask.scaleX = 0; // 无效 // imgMask.scaleX = 1 // 有效 //imgMask.scaleX = 0.5 // 有效 img.mask ...

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

32. 为什么pannel里显示两张同样的图片显示不出来,只能显示一张 [ 87%]

...panel = new Laya.Panel(); this.panel.size(720, 1136); this.panel.vScrollBarSkin = "comp/vscroll.png"; Laya.stage.addChild(this.panel); var img:Laya.Image = new Laya.Image(); img.skin = "res/GameBG2.jpg" this.panel.addChild(img) var img1:Laya.Image = new Laya.Image(); img1.y = 1136; img1.skin = "res/...

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

33. 屏幕适配的缩放模式详解(JavaScript-2D基础篇(JS)-屏幕适配) [ 87%]

...一个背景         var bg = new Image();         bg.skin = "res/img/loadingBg.jpg";         Laya.stage.addChild(bg);               //实例一个文本         txt = new Text();         txt.text = "适配模式("+modes+") ";      ...

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

34. UI-List [ 87%]

... 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.Stage, Stat = Laya.Stat, Handler = Laya.Handler; // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, Web...

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

35. UI-List [ 87%]

...w Image(); this.addChild(this.img); this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box); // 主要逻辑代码 var Stage = Laya.Stage; var List = Laya.List; var Handler = Laya.Handler; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas La...

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

36. image控件,手机浏览器环境,skin设置url网址链接获取不到图片,电脑浏览器种可以 [ 87%]

image控件,手机浏览器环境,skin设置url网址链接获取不到图片,电脑浏览器种可以 (1)laya版本2.6.1beta,新建一个物理示例项目,在TestScene.scene中放置一个image组件,skin设置:https://makasc.com/oppo/icon_road.png (参考截图) (2)发...

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

37. List翻页效果 [ 86%]

..._downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMou...

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

38. List翻页效果怎么实现 [ 86%]

..._downValue: number = -1; constructor() { super(); this.list_rule.hScrollBarSkin = ""; this.list_rule.renderHandler = new Laya.Handler(this, this.updateItem); this.list_rule.scrollBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMou...

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

39. 屏幕适配的缩放模式详解(ActionScript-2D基础篇(AS3)-屏幕适配) [ 86%]

...背景         var bg:Image = new Image();         bg.skin = "res/img/loadingBg.jpg";         Laya.stage.addChild(bg);            //实例一个文本         txt = new Text();         txt.text = "适配模式("+Stage.SCALE_EXACTFIT+") ";...

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

40. Image属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 86%]

...图像的组件,用来显示位图图像。可以设置 Image 组件的 skin 属性来改变 Image 组件呈现的图像。Image 组件支持九宫格数据设定,用于实现图像放大后图像显示不失真的效果。 ​ 点击资源面板里的 Image 组件,拖放到页面编辑区,...

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