大约有 453 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0051 秒)
Laya_社区(306) Laya3.0_api(61) Laya2.0_文档(28) Laya3.0_文档(17) Laya2.0_api(13) laya_api(12) Laya_示例(8) Laya2.0_示例(8)
基础文本(Text)1. LayaAir IDE中使用Text1.1 创建Text1.2 属性介绍1.3 Syntax属性1.4 脚本控制Text2. 代码创建Text基础文本(Text) Text继承于Sprite,是静态文本的基础组件。这里我们介绍一下Text专属的组件属性。 1. LayaAir IDE中使用Text 1.1 ...
来源: Laya3.0_文档 发布时间: 20241014
...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
..._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
...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
...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
...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
...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
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
...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
...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