大约有 120 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0055 秒)
Laya_社区(58) Laya2.0_文档(29) Laya3.0_api(11) Laya3.0_文档(7) Laya2.0_api(6) laya_api(5) Laya_示例(2) Laya2.0_示例(2)
...斜体。 | | wordWrap | 文本是否换行。 | | stroke | 文本的描边宽度。 | | strokeColor | 文本的描边颜色。 | | asPassword | 文本是否显示为密码样式。 | | leading | 文本的垂直行间距。 | | padding | 文本的边距。 | ## 二、通过代码创建Label组件 ...
来源: Laya2.0_文档 发布时间: 20210714
...粗体,功能同bold color:#ff0000; 字体颜色 stroke:2px; 字体描边宽度 strokeColor:#ff0000; 字体描边颜色 padding:10px 10px 20px 20px; 边缘的距离 vertical-align:top|bottom|middle; 垂直对齐方式 align:left|right|center; 水平对齐方式 line-height:20px; 行高 background-...
来源: Laya3.0_api 发布时间: 20231102
...Input 对象的显示位置。 textInput.width = 300;//设置 textInput 的宽度。 textInput.height = 200;//设置 textInput 的高度。 Laya.stage.addChild(textInput);//将 textInput 添加到显示列表。 } } } example Laya.init(640, 800);//设置游戏画布宽高 Laya.stage.bgColor = "#efef...
来源: Laya3.0_api 发布时间: 20231115
...斜体。 | | wordWrap | 文本是否换行。 | | stroke | 文本的描边宽度。 | | strokeColor | 文本的描边颜色。 | | asPassword | 文本是否显示为密码样式。 | | leading | 文本的垂直行间距。 | | padding | 文本的边距。 | ## 二、通过代码创建Label组件 ...
来源: Laya2.0_文档 发布时间: 20210715
...extArea 对象的显示位置。 textArea.width = 300;//设置 textArea 的宽度。 textArea.height = 200;//设置 textArea 的高度。 Laya.stage.addChild(textArea);//将 textArea 添加到显示列表。 } } } example Laya.init(640, 800);//设置游戏画布宽高、渲染模式 Laya.stage.bgCol...
来源: Laya3.0_api 发布时间: 20231115
...RIZONTAL; // 始终以横屏展示 Laya.stage.scaleMode = "fixedwidth"; // 宽度不变 this.engine; var world; this.engine = Matter.Engine.create({ enableSleeping: true // 开启睡眠 }); world = this.engine.world; Matter.Engine.run(this.engine); // Engine 启动 var render = LayaRender.create({ e...
来源: Laya_社区 发布时间: 20180522
...ogressBar = new ProgressBar("../../../../res/ui/progressBar.png"); //设置宽度 progressBar.width = 400; //设置显示位置,在舞台居中 progressBar.x = (Laya.stage.width - progressBar.width ) / 2; progressBar.y = Laya.stage.height / 2; //设置九宫格边距,以防变形 progressBar.siz...
来源: Laya2.0_文档 发布时间: 20210715
...素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以像素为单位)。 Sprite drawCallOptimize : BooleanSprite editable : Boolean 是否可编辑。 Input filters : Array滤镜集合。可以设置多个滤镜组合。Sprite focus : Boolean 表示焦点...
来源: Laya2.0_api 发布时间: 20190513
...or = color; //如果有描边颜色参数 if (strokeColor) { //文本描边宽度为4 label.stroke = 4; //设置文本描边颜色 label.strokeColor = strokeColor; } //加载到舞台 Laya.stage.addChild(label); return label; } } } ```
来源: Laya2.0_文档 发布时间: 20210714
... cacheAs="bitmap" 这个属性但是我相信很多人都遇到了 如果宽度或者高度超过 2048 的话 cacheAs 就会失败 导致蒙版消失不显示, 但是说实话 我做的时候已经很接近2048,,但是宽和高都没有超过 2048的时候,蒙版就已经消失了! 我很...
来源: Laya_社区 发布时间: 20200604