• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 385 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0042 秒)

111. Laya2.0在Iframe中键盘事件不触发!!! [ 73%]

Laya2.0在Iframe中键盘事件不触发!!! 这个问题看帖子有人已经遇到http://ask.layabox.com/question/42758。做了个实验,并不是外层页面导致或限制,而是laya底层导致!!望官方给出修改位置,项目急需这个功能。以下为demo地址,请看...

来源: Laya_社区 发布时间: 20190714

112. Laya事件不能添加给多边形吗? [ 73%]

Laya事件不能添加给多边形吗? var clickRect = new Laya.Sprite(); clickRect.graphics.drawRect( 0, 0, Laya.stage.width, Laya.stage.height-100, "#ffffff" ); Laya.stage.addChild( clickRect ); clickRect.on( Laya.Event.CLICK, this, function(){ console.log( 'adf' ) } );   我创建一个多边...

来源: Laya_社区 发布时间: 20180201

113. 动画状态脚本(JavaScript-3D基础(JS)-LayaAir3D之Animator动画) [ 73%]

...&category=3d&group=Animation3D&name=AnimatorStateScriptDemo))。 > 动画事件脚本 ```typescript //继承自AnimatorStateScript(动画状态脚本) export default class AnimatorStateScriptTest extends Laya.AnimatorStateScript { constructor() { super(); this._text = null; } get text() { return t...

来源: Laya2.0_文档 发布时间: 20210715

114. 使用loadImage加载一个图片后的点击事件 [ 73%]

使用loadImage加载一个图片后的点击事件 var Sprite = Laya.Sprite; var ape = new Sprite(); Laya.stage.addChild(ape); ape.loadImage(img,360, 300, 60, 60, Laya.Handler.create(this, function(){         ape.on(Laya.Event.CLICK, this, function(){         console.log(111)     }) }));...

来源: Laya_社区 发布时间: 20180609

115. 重发问题: 点击页面会导致setTimeout setInterval 延迟执行 [ 73%]

...的时候动画会明显卡顿帧数并没有变小, 我想应该是点击事件的处理导致setInterval稍后执行; 我把setInterval改成setTimeout还是同样的结果, 即使把原来点击页面触发的一系列函数全部注释, 在页面的任何地方添加下面的方法, 一样会导...

来源: Laya_社区 发布时间: 20170323

116. 动画状态脚本(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 73%]

...&category=3d&group=Animation3D&name=AnimatorStateScriptDemo))。 > 动画事件脚本 ```typescript //继承自AnimatorStateScript(动画状态脚本) export default class AnimatorStateScriptTest extends Laya.AnimatorStateScript { private _text:Laya.Text; constructor() { super(); } get text():Laya...

来源: Laya2.0_文档 发布时间: 20210715

117. laya websocket 在微信小游戏连接不上服务器 [ 73%]

...//s.timeinflow.com" }); wx.onSocketOpen(function (res) { // webSocket打开事件处理 console.log('websocket opened.'); var msg = JSON.stringify({ Hello: { Name: 'hi lei lei~' }}) wx.sendSocketMessage({ data: msg }); }); wx.onSocketError(function (res) { // 链接出错时的处理 console.log('we...

来源: Laya_社区 发布时间: 20180528

118. 示例 骨骼动画换装 加不上点击事件 [ 73%]

示例 骨骼动画换装 加不上点击事件 示例是每一秒换一次装,我想改为点击小人换装 例如这样的:http://pixijs.github.io/examples/index.html?s=spine&f=dragon.js&title=Dragon&plugins=pixi-spine&v=#/spine/goblins.js   可是我加了点击事件,根...

来源: Laya_社区 发布时间: 20170818

119. cavans上触发不了input的点击事件 [ 73%]

cavans上触发不了input的点击事件 在舞台上添加一个sprite,给sprite添加一个点击事件,this.hitimg.on(Laya.Event.CLICK,this,this.onStart); onStart: _proto.onStart = function(){ console.log(111111122222); $("#fileInput").trigger('click'); } 可以打印数字,但是触发...

来源: Laya_社区 发布时间: 20170626

120. 骨骼动画如何响应点击事件[ 73%]

骨骼动画如何响应点击事件? 如题,骨骼动画响应不了点击事件,求助   //响应点击事件 humanSkeleton.on(Laya.Event.CLICK,this,onclickHuman);   function onclickHuman(){ console.log("onclickHuman"); } https://www.cnblogs.com/Jackie-Snow/p/8487607.html 网上的这个...

来源: Laya_社区 发布时间: 20180909