大约有 229 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0034 秒)
Laya2.0_文档(66) Laya_社区(55) Laya3.0_api(40) laya_api(17) Laya2.0_api(17) Laya3.0_文档(16) Laya_示例(10) Laya2.0_示例(8)
...trongInOut'); easeFunctionsList.array = data; } renderList(item) { item.setLabel(item.dataSource); } onEaseFunctionChange(list) { const Tween = Laya.Tween, Ease = Laya.Ease; character.pos(100, 50); tween && tween.clear(); tween = Tween.to(character, { x: 350, y: 250 }, duration, Ease[list.selectedIt...
来源: Laya2.0_示例 发布时间: 20241124
label 第一次赋值不能为0 var label = new Laya.Label(); label .text = 0;//赋值0无效,其他值可以 1.7.1 2017-03-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 0应该是...
来源: Laya_社区 发布时间: 20170306
...建了一个scene并使用内嵌模式,界面只是简单显示了一个label,在运行时,报错“laya.core.js:22326 Uncaught Can not find scene:Hello.scene”,原因是在/bin/目录下找不到场景对应的描述文件Hello.json。这让我很不理解,内嵌模式的描述不是已...
来源: Laya_社区 发布时间: 20190625
...提示 var button:Button=new Button(); Laya.stage.addChild(button); button.label="button One"; button.pos(100,100); button.skin="comp/button.png"; button.toolTip="我是button One!"; //自定义鼠标提示 var button2:Button=new Button(); Laya.stage.addChild(button2); button2.label="button Two"; bu...
来源: Laya_社区 发布时间: 20161115
...anel.width = 500; panel.height = 500; panel.x = 200; var label = new laya.ui.Label(); label.text = "fsadfsdfsdfsdfsdf"; label.color = "#ff0000"; label.fontSize = 40; label.y = 50; var label2 = new laya.ui.Label(); label2.text = "fsadfsdfsdfsdfsdf...
来源: Laya_社区 发布时间: 20170401
按钮, label消失问题 运行起来了, 闲置一段时间, 再点击蓝色的按钮, 。 按钮上设置的label不见了 我把这个按钮的, png, 然后Laya里的设置, 上传了上来。 然后, 我整个stage上还有很多其它的元件, 请问,...
来源: Laya_社区 发布时间: 20170713
...关的链接 提交 2 个回复 cuixueying 赞同来自: zhang92tong Box,label,image都可以通过代码来创建 var box=new Laya.Box(); var image=new Laya.Image(); image.skin='res/001.png'; var label=new Laya.label(); label.text=' I am a Label!' box.addChild(image); box.addChild(label); L...
来源: Laya_社区 发布时间: 20170421
...oup不同的是,Radio是一个单选框,而RadioGroup可以通过修改labels属性来增加单选框。RadioGroup组件的详细用法可以参考RadioGroup API。 一、通过LayaAir IDE创建RadioGroup组件 1.1 创建RadioGroup 如图1-1所示,点击选择小部件面板里的RadioGroup组...
来源: Laya3.0_文档 发布时间: 20241014
...类型统统为image,这一点和IDE的编辑器一致; 2,除box和Label特殊一些,其他的都和IDE的ui命名规则一致,前缀或后缀; 3,控件都需要按照前缀,后缀规则命名,3态如下图,要建立子文件夹 normal,over,down 4,Container_前缀会识别...
来源: Laya2.0_文档 发布时间: 20210715
...举编辑器默认的组件资源对应规则(不区分大小写): `Label`组件(文本框):label_xxx; `TextInput`组件(输入框):input_xxx或textinput_xxx; `TextArea`组件(文本域,带滚动条):area_xxx或textarea_xxx; `Button`组件(按钮):btn_xxx或butt...
来源: Laya2.0_文档 发布时间: 20210714