大约有 536 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
createElement('button') 问题 var button = Laya.Browser.window.document.createElement('button'); button.type='button'; button.value ='逐加'; button.src = "xxxxx"; button.style.width = '40px'; button.style.height = '40px'; button.style.background = "../../../bin/res/atlas/assets.png"; // mapDivx....
来源: Laya_社区 发布时间: 20170619
如何取消button的皮肤? 再设置button皮肤skin生效后,如何取消skin,设置skin为空无效 2019-01-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 bpmf_d 赞同来自: 物体.skin = "" 2019-0...
来源: Laya_社区 发布时间: 20190123
Button 添加事件不执行? Laya.init(1351, 760, Laya.WebGL); let Stage = Laya.stage; let Button = Laya.Button; let Event = Laya.Event; let Handler = Laya.Handler; let rightBtn = new Button(); rightBtn.labelFont = "Microsoft YaHei"; rightBtn.label = 'right'; rightBtn.labelSize = 60; rightBtn.la...
来源: Laya_社区 发布时间: 20180309
...览器文件上传框 // 程序入口 class GameMain { private btn: Laya.Button; private skin: string = 'images/button.png'; constructor() { Laya.init(200, 300); Laya.loader.load(this.skin, Laya.Handler.create(this, () => { this.btn = this.createBtn(this.skin); this.btn.on(Laya.Event.CLICK, this,...
来源: Laya_社区 发布时间: 20170511
关于button的click监听 let btn:Laya.Button=new Laya.Button(); btn.label="AAAAAA"; btn.pos(200,200); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,()=>{console.log("click button");}); 请问 这样监听不到button的点击事件吗?如果我创建一个ui.view a a.on 也...
来源: Laya_社区 发布时间: 20171128
...供了三种鼠标提示package { import laya.net.Loader; import laya.ui.Button; import laya.ui.TipManager; import laya.utils.Browser; import laya.utils.Handler; import ui.TestTipsUI; public class ToolTipDemo { private var _testTip:TestTipsUI;//ui弹框(IDE发布),用于鼠标悬浮提示框 p...
来源: Laya_社区 发布时间: 20161115
Cannot set property text of #<Button> which has only a getter Cannot set property text of #<Button> which has only a getter 2020-08-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠...
来源: Laya_社区 发布时间: 20200811
button图片丢失 在UI编辑器中 编辑可以显示出来,,但是 运行代码 加载界面 会不显示! button 设置skin 图片 会提示 lose skin WBHomeUI/btn_queding.png 图片无法加载 但是 通过 image 设置 skin 这张图片 ,可以加载显示出来? 这是什么...
来源: Laya_社区 发布时间: 20170607
Button点击函数逻辑bug onMouse(e) { if (this.toggle === false && this._selected) return; if (e.type === Laya.Event.CLICK) { this.toggle && (this.selected = !this._selected); this._clickHandler && this._clickHandler.run(); return; } !this._selected && (this.state...
来源: Laya_社区 发布时间: 20191112
UI组件的Button,做界面时指定的白色字,重新设定了label参数后就变成黑色了。 TypeScript开发的项目,IDE是1.7.18beta 2018-05-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 崔...
来源: Laya_社区 发布时间: 20180503