大约有 444 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0047 秒)
Laya_社区(163) Laya3.0_api(152) Laya2.0_api(98) laya_api(8) Laya3.0_文档(8) Laya2.0_示例(6) Laya2.0_文档(6) Laya_示例(3)
...监听并传参。 给你的dialog下的按钮监听CLICK事件,通过e.target.name来判断当前点击的是哪个按钮,抛出具体的事件并监听。 myClose.on(Event.CLICK,this,onClicks); myYes.on(Event.CLICK,this,onClicks); myNo.on(Event.CLICK,this,onClicks) } private function onClicks(...
来源: Laya_社区 发布时间: 20160908
...t.MOUSE_MOVE ,this, this.onMouseMove); this.onMouseDownX = e.target.mouseX; this.onMouseDownY = e.target.mouseY; } onMouseUp(e : laya.events.Event):void{ console.log("MOUSE_UP"); this.off(laya.events.Event.MOUSE_MOVE ,this, this.o...
来源: Laya_社区 发布时间: 20160823
一个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
...hild(sp2); onAddEvent(sp1); onAddEvent(sp2); } private function onAddEvent(target:Sprite):void { target.on(Event.MOUSE_OVER,this,onMouse); target.on(Event.MOUSE_OUT,this,onMouse); } private function onMouse(e:Event):void { //存储over状态的显示对象的name if(e.type==Event.MOUSE_OVER) { arr.p...
来源: Laya_社区 发布时间: 20170502
...写出 报错如下: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //---------------------------------------------------------...
来源: Laya_社区 发布时间: 20180211
... Hierarchy Event Index Constructors constructor Properties button currentTarget delta isDblClick nativeEvent target touchId touchPos type ADDED BLUR CHANGE CHANGED CLICK CLOSE COLLISION_ENTER COLLISION_EXIT COLLISION_STAY COMPLETE DEVICE_LOST DISPLAY DOUBLE_CLICK DRAG_END DRAG_MOVE DRAG_START EMPTY ...
来源: Laya3.0_api 发布时间: 20231115
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
... trace("mouseEvent"); trace("e "+e.target); switch (e.type) { case Event.MOUSE_DOWN: trace("press"); e.target.startDrag()...
来源: Laya_社区 发布时间: 20170517
...只能应用在SVG上 取值none:元素永远不会成为鼠标事件的target 取值auto:与pointer-events属性未指定时的表现效果相同(即将元素恢复成为鼠标事件的target) 这里不要忘了给内层添加auto属性,否则被外层包裹的所有内层无法成为鼠...
来源: Laya_社区 发布时间: 20170517