码迷,mamicode.com
首页 > 其他好文 > 详细

事件响应的优先级、stopProgapation禁止下层组件响应

时间:2014-09-16 15:52:50      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   div   sp   cti   代码   

cocos2d-js没有完整的鼠标事件处理,这点比js/flash的要差一些,不过凑合着也可以用了。
一般界面编程,可以用显示列表的Node作为监听器的优先级,在上方的会比下方的高优先级。
而cocos2d-js没有stopImmediatePropagation,只有stopProgapation,一旦某个监听器中执行了stopProgapation,后续的监听器都不会被执行。这里并没有js/flash的冒泡概念。
 
如果在上层Node中stopProgapation,那么效果就有点像设置了swallowTouches:true,但会更灵活
 
例子:
 
界面上添加2个sprite,child1在下,child2在上。
如下的代码,child2的监听器优先级高,会首先执行,其中func2会先输出,因为按顺序执行,但由于stopProgapation,所以child1的监听器不会被执行。
 
        if("touches" in cc.sys.capabilities){
            cc.eventManager.addListener({event: cc.EventListener.TOUCH_ONE_BY_ONE, onTouchBegan: function(){
                trace("func1");
                return true;
            }}, this.child1);
            cc.eventManager.addListener({event: cc.EventListener.TOUCH_ONE_BY_ONE, onTouchBegan: function(touch,event){
                trace("func2");     //按顺序执行,先func2,再func3
                return true;
            }}, this.child2);
            cc.eventManager.addListener({event: cc.EventListener.TOUCH_ONE_BY_ONE, onTouchBegan: function(touch,event){
                trace("func3");
                event.stopPropagation();
                return true;
            }}, this.child2);
        }else{
            cc.eventManager.addListener({event: cc.EventListener.MOUSE, onMouseDown: function(){
                trace("func1");
            }}, this.child1);
            cc.eventManager.addListener({event: cc.EventListener.MOUSE, onMouseDown: function(event){
                trace("func2");     //按顺序执行,先func2,再func3
            }}, this.child2);
            cc.eventManager.addListener({event: cc.EventListener.MOUSE, onMouseDown: function(event){
                trace("func3");
                event.stopPropagation();
            }}, this.child2);
        }

 

事件响应的优先级、stopProgapation禁止下层组件响应

标签:style   blog   color   io   os   div   sp   cti   代码   

原文地址:http://www.cnblogs.com/kenkofox/p/3974998.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!