大约有 33 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Event类中的target属性IDE返回值为什么和文档不一样 文档上写着Event是 target : Sprite 事件目标触发对象。 IDE中 Event.target: EventTarget 是我哪弄错了吗? 2017-10-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...
来源: Laya_社区 发布时间: 20171015
MovieClip的target和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
...vent: any; /** 事件目标触发对象。*/ target: laya.display.Sprite; /** 事件当前冒泡对象。*/ currentTarget: laya.display.Sprite; _stoped: boolean; /** 分配给触摸点的唯一标识号(作...
来源: Laya_社区 发布时间: 20170601
...只能应用在SVG上 取值none:元素永远不会成为鼠标事件的target 取值auto:与pointer-events属性未指定时的表现效果相同(即将元素恢复成为鼠标事件的target) 这里不要忘了给内层添加auto属性,否则被外层包裹的所有内层无法成为鼠...
来源: Laya_社区 发布时间: 20170517
一个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
...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
....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
...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
...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
... * 缓动对象的props属性到目标值。 * @param target 目标对象(即将更改属性值的对象)。 * @param props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplet...
来源: Laya_社区 发布时间: 20180425