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

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

11. Dialog关闭时如何向open他的页面传值? [ 91%]

...监听并传参。 给你的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

12. tab 是否可以做到左右滑动切换view呢? [ 91%]

...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

13. 一个LayaAir moveout target 设计上的疑问? [ 91%]

一个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

14. 两个问题都关于LayaAir的ios真机 [ 90%]

...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

15. 分享:避免鼠标快速移动,mouseout和mouseover触发顺序不一致的问题! [ 88%]

...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

16. socket通讯返回数据 [ 86%]

...写出 报错如下: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //---------------------------------------------------------...

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

17. laya.events.Event_API3.0 [ 86%]

... 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

18. MovieClip的target和currentTarget属性为undefined? [ 85%]

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

19. 循环添加一组按钮事件无法正常使用 [ 85%]

...           trace("mouseEvent");             trace("e "+e.target);             switch (e.type)             {                 case Event.MOUSE_DOWN:                     trace("press");                     e.target.startDrag()...

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

20. 图片透明区域点击穿透 [ 84%]

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

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