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

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

131. 基础文本 · LayaAir3.0文档 · LAYABOX [ 82%]

基础文本(Text)1. LayaAir IDE中使用Text1.1 创建Text1.2 属性介绍1.3 Syntax属性1.4 脚本控制Text2. 代码创建Text基础文本(TextText继承于Sprite,是静态文本的基础组件。这里我们介绍一下Text专属的组件属性。 1. LayaAir IDE中使用Text 1.1 ...

来源: Laya3.0_文档 发布时间: 20241014

132. UI-Label [ 82%]

...Label(); Laya.stage.addChild(label); label.font = "Microsoft YaHei"; label.text = "SAMPLE DEMO"; label.fontSize = 30; label.color = color; if (strokeColor) { label.stroke = STROKE_WIDTH; label.strokeColor = strokeColor; } return label; } } new UI_Label();module laya { import Stage = Laya.Stage; impo...

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

133. UI-Label [ 82%]

..._WIDTH = 4; var label = new Label(); label.font = "Microsoft YaHei"; label.text = "SAMPLE DEMO"; label.fontSize = 30; label.color = color; if (strokeColor) { label.stroke = STROKE_WIDTH; label.strokeColor = strokeColor; } Laya.stage.addChild(label); return label; } })();module laya { import Stage = ...

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

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

...g](img/1.png) ​ (图1) ​ Label组件拖放到编辑区后,设置 text 属性的值为 LayaAir IDE 后的显示效果如下: ​ ![图片0.png](img/2.png) ​ (图2) ### 1.2 Label 属性 ​ ![图片0.png](img/3.png) ​ (图) | **属性** | 功能说明 | | -------- | -----------...

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

135. sprite点击事件 位置便宜 [ 81%]

...son311 赞同来自: var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Text = Laya.Text; var Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas <!--laya-stage--> const canvas = document.getElementById('laya-stage'...

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

136. HTMLIframeElement报错 [ 81%]

...e(/>\s+</g,'><'); rst=(new DOMParser()).parseFromString(value,'text/xml'); if (rst.firstChild.textContent.indexOf("This page contains the following errors")>-1){ throw new Error(rst.firstChild.firstChild.textContent); } return rst; } 2018-01-03 添加评论 免费帖 --> 分享 微博...

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

137. laya.ui.Label [ 81%]

...lInheritanceLabel UIComponent Sprite Node EventDispatcher ObjectSubclasses TextInput Label 类用于创建显示对象以显示文本。 See alsolaya.display.TextPublic Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获取自身是...

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

138. textinput lose focus时候,有1px的位置变化 [ 81%]

textinput lose focus时候,有1px的位置变化 bug 确认: 环境: latest chrome, repro steps: 1. 在页面上加一个text input. 2. 在text input输入东西 3. 当focus从text input切换时,整个text input会用1px的位移。 请问如何避免这个 ? 2018-03-17 添加评论 免...

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

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

...g](img/1.png) ​ (图1) ​ Label组件拖放到编辑区后,设置 text 属性的值为 LayaAir IDE 后的显示效果如下: ​ ![图片0.png](img/2.png) ​ (图2) ### 1.2 Label 属性 ​ ![图片0.png](img/3.png) ​ (图) | **属性** | 功能说明 | | ----------- | --------...

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

140. 自定义对话框设置zOrder后,关闭时报错 [ 81%]

...a.stage.addChild(this); this.zOrder = 100; this.count = 4; this.countLabel.text = '' + this.count; Laya.timer.loop(1000, this, this.countdown); } Laya.class(countdownBar, "CountdownBar", CountdownUI); return countdownBar; }()); CountdownBar.prototype.countdown = function () { this.count--; if (this....

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