大约有 364 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(202) Laya2.0_api(59) laya_api(55) Laya2.0_文档(16) 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
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
...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
...种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Text = Laya.Text; var Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; var txt; (function() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser....
来源: Laya_示例 发布时间: 20241117
...is.createLogger(); } createInteractiveTarget() { const Event = Laya.Event, Sprite = Laya.Sprite; let rect = new Sprite(); rect.graphics.drawRect(0, 0, 200, 200, "#D2691E"); rect.size(200, 200); rect.x = (Laya.stage.width - 200) / 2; rect.y = (Laya.stage.height - 200) / 2; Laya.stage.addChild(rect); ...
来源: Laya2.0_示例 发布时间: 20241117