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

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

1. Event类中target属性IDE返回值为什么和文档不一样 [ 100%]

Event类中target属性IDE返回值为什么和文档不一样 文档上写着Event是     target : Sprite     事件目标触发对象。 IDE中     Event.target: EventTarget 是我哪弄错了吗? 2017-10-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

2. MovieCliptarget和currentTarget属性为undefined? [ 90%]

MovieCliptarget和currentTarget属性为undefined? private function showNowPic():void{ for each(var ul:String in pics){ var mc:MovieClip = new MovieClip; mc.load(ul); this.addChild(mc); mc.on(Event.COMPLETE,this,stopNowMC) } } private function stopNowMC(e:Event):void{ trace(e.currentTarget); t...

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

3. 如何能监听到TouchStart和TouchEnd事件 [ 86%]

...vent: any;         /** 事件目标触发对象。*/         target: laya.display.Sprite;         /** 事件当前冒泡对象。*/         currentTarget: laya.display.Sprite;         _stoped: boolean;         /** 分配给触摸点唯一标识号(作...

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

4. 图片透明区域点击穿透 [ 85%]

...只能应用在SVG上 取值none:元素永远不会成为鼠标事件target 取值auto:与pointer-events属性未指定时表现效果相同(即将元素恢复成为鼠标事件target) 这里不要忘了给内层添加auto属性,否则被外层包裹所有内层无法成为鼠...

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

5. 一个LayaAir moveout target 设计上疑问? [ 82%]

一个LayaAir moveout target 设计上疑问? Laya.init(600, 600); Laya.stage.bgColor = "white"; var sp = ; //10x10个黑色方块,鼠标移动过去时变红,鼠标移走恢复 for (var i = 0; i < 10; i++) {     for (var j = 0; j < 10; j++) {         sp[j + i * 10] = new Laya....

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

6. 两个问题都关于LayaAirios真机 [ 80%]

...ed && (state = stateMap[e.type]); } public static function addDark(target:laya.display.Sprite, isDark:Boolean = true):void { if (isDark) { // laya.ui.UIUtils.addFilter(target, DARK); target.filters=[ new ColorFilter([0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 0, 1, 0])]; } else...

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

7. 关于遍历产生sprite点击事件,急,大神帮看哈 [ 76%]

....CLICK,this,onSpClick) 3、点击sp时,直接获取sp.index值即可(e.target.index)! 2017-02-21 1 0 分享 微博 QZONE 微信 lift6220819 赞同来自: q395212409 Laya.init(640,1010); Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL; Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; Laya.stage.a...

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

8. 精灵添加名称 [ 76%]

...unction onsp(e:Event){              console.log("监听到按钮"+e.target);              console.log((e.target.getChildAt(0) as Sprite).name);              console.log(e.target.name)   }   输出如下图所示    附件 : --> 2017-03-30 添加评论 免费帖 --> 分享 ...

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

9. 新手!谁懂得把下面两个文件转成layaair可以运行代码 [ 72%]

...r params:URLVariables = new URLVariables();         params.decode( evt.target.data );           execute( params );     }       private var execute:Function; }   iLoader.as   package {     import com.legend.loader.BasicLoader;     import com.legend.loader.SWFLoader;       impor...

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

10. laya.utils.Tween.to第一个参数可以是个label? [ 71%]

... * 缓动对象props属性到目标值。          * @param    target 目标对象(即将更改属性对象)。          * @param    props 变化属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplet...

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