createjs实例化的对象怎么绑定touch事件,用createjs自己的方法监听不起作用


javascript createjs


 //代码片段,能看懂就行
createjs.Touch.enable(stage,true,false); 
//让createjs可以使用touch


//方法1
//绑定click
instance.addEventListener("click",handleClick);
//handleClick正常执行

//绑定touch
instance.addEventListener('touchstart', handleTouch);
//handleTouch不执行


//方法2
//click
instance.on("click", function(){        
    console.log(111);
});  //console的111可以显示
//touch
instance.on("touchstart", function(){       
    console.log(111);
});  //console的111无法显示

在学习使用createjs,不清楚是哪儿的问题,希望指出来,有建议最好,谢谢

canvas createjs html5

地道里有梨 10 years, 3 months ago

我也遇到了跟你同样的问题不知道楼主现在解决了没,困扰我很久了求解决方法

猫利小次郎 answered 10 years, 1 month ago

启用 touch 后,使用 mousedown 替换 touchstart 试试。

http://www.createjs.com/Docs/EaselJS/classes/Touch.html

领主灰烬使者 answered 10 years, 1 month ago

Your Answer