大约有 392 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)
Laya_社区(229) Laya2.0_api(59) laya_api(55) Laya2.0_文档(17) Laya2.0_示例(12) Laya_示例(11) Laya3.0_文档(7) Laya3.0_api(2)
开放域中Sprite click 事件穿透到主域中 主域 WxOpenDataViewer ZOrder = 7 mouseThrough = false,mouseEnabled = true, 开放域:中一个Sprite绑定了Click事件 无法接受到 一直是WxOpenDataViewer 的click事件, 开放域中绑定了Click的sprite ZOrder = 13 mouseThrou...
来源: Laya_社区 发布时间: 20191122
怎么实现在同一个sprite上绑定多个click事件? Laya.stage.on('click',null,function(){alert(11111)}).on('click',null,function(){alert(2222)}),这不是我想要的,我想实现点击两次舞台弹出不同的值,第一次点击舞台弹出111,再点击一下弹出222,并不是点击一...
来源: Laya_社区 发布时间: 20171211
laya.sprite 不接受click事件 代码如下: this._firstSprite= new Laya.Sprite(); this._firstSprite.pos(100,150); Laya.stage.addChild(this._firstSprite); this._firstSprite.loadImage('../laya/assets/image/0.jpg'); //this._firstSprite.scale(0.3,0.3); this._firstSprite.size(200,200); //this._firs...
来源: Laya_社区 发布时间: 20200801
... 我在Stage上添加了MouseDown、MouseUp事件,然后Stage上有一个Sprite,我给这个Sprite添加了Click时间。 现在问题是,我在Stage上响应Mousedown/mouseup事件的时候,就触发了sprite的click事件,我给stage的mousedown、mouseup添加了stopPropagation 没起...
来源: Laya_社区 发布时间: 20170905
sprite添加click监听事件反应迟钝 代码如下,如果用drawyuan.graphics.drawCircle(0,0,50,"#232628");则会点击反应非常迟钝,如果用loadimg的话,反应很快; function drawCirle() { var drawyuan = new Laya.Sprite(); // drawyuan.graphics.drawCircle(0,0,50,"#232628");//反...
来源: Laya_社区 发布时间: 20170905
...ck点击事件报错 是不是只能抛自定义事件 比如let xx:Laya.Sprite = new Laya.Sprite(); xx.event(Laya.Event.Click); 然后会报错 因为要实现新手引导5秒自动点击功能 所以会抛出一个事件 这个貌似是基本功能 求解答 2018-05-25 添加评论 免...
来源: Laya_社区 发布时间: 20180525
...谢 2018-01-09 0 0 分享 微博 QZONE 微信 liuyao 赞同来自: 两个Sprite层叠起来,上面的Sprite调用on方法绑定click事件,下层的Sprite也调用on方法绑定click事件,我希望上层的Sprite的事件处理函数运行完毕,下层再捕获click事件,而不是被拦...
来源: Laya_社区 发布时间: 20180109
...eThrough设计原理问题? 关于 mouseThrough 的设计原理,如果sprite对象没有设置点击事件(如 Event.CLICK),那么 sprite.mouseThrough = false;设置是没有效果的,这样设计是不是有问题?var a:Sprite = new Sprite(); a.graphics.drawRect(0,0,200, 200, "#00ff00"...
来源: Laya_社区 发布时间: 20181026
...种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; var button1, button2; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWid...
来源: Laya_示例 发布时间: 20241117
...n(Event.CLICK, this, this.onDecreaseAlpha2); } createButton(label) { const Sprite = Laya.Sprite; let w = 300, h = 60; let button = new Sprite(); Laya.stage.addChild(button); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.size(w, h); button.graphics.fillText(label, w / 2, 17, "20px simHei", ...
来源: Laya2.0_示例 发布时间: 20241117