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

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

81. Label属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 53%]

...斜体。 | | wordWrap | 文本是否换行。 | | stroke | 文本的描边宽度。 | | strokeColor | 文本的描边颜色。 | | asPassword | 文本是否显示为密码样式。 | | leading | 文本的垂直行间距。 | | padding | 文本的边距。 | ## 二、通过代码创建Label组件 ...

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

82. laya.html.dom.HTMLDivElement_API3.0 [ 53%]

...粗体,功能同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

83. laya.ui.TextInput_API3.0 [ 52%]

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

84. Label属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 52%]

...斜体。 | | wordWrap | 文本是否换行。 | | stroke | 文本的描边宽度。 | | strokeColor | 文本的描边颜色。 | | asPassword | 文本是否显示为密码样式。 | | leading | 文本的垂直行间距。 | | padding | 文本的边距。 | ## 二、通过代码创建Label组件 ...

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

85. laya.ui.TextArea_API3.0 [ 52%]

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

86. 物理Bodies绑定Laya.Sprite [ 52%]

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

87. ProgressBar属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 52%]

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

88. laya.display.Input [ 52%]

...素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以像素为单位)。 Sprite drawCallOptimize : BooleanSprite  editable : Boolean 是否可编辑。 Input filters : Array滤镜集合。可以设置多个滤镜组合。Sprite  focus : Boolean 表示焦点...

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

89. Label属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 52%]

...or = color; //如果有描边颜色参数 if (strokeColor) { //文本描边宽度为4 label.stroke = 4; //设置文本描边颜色 label.strokeColor = strokeColor; } //加载到舞台 Laya.stage.addChild(label); return label; } } } ```

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

90. 新手引导 挖洞 不用 cacheAs="bitmap" 希望能帮助那些和我一样有需求的码农!你好我好大家好才是真的好!请各位大佬批评指教! [ 52%]

... cacheAs="bitmap" 这个属性但是我相信很多人都遇到了 如果宽度或者高度超过 2048 的话 cacheAs 就会失败 导致蒙版消失不显示, 但是说实话 我做的时候已经很接近2048,,但是宽和高都没有超过 2048的时候,蒙版就已经消失了! 我很...

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