canvas});//通过view把小程序的canvas传入varstage=newPIXI.Container();varbg=PIXI.Sprite.from("img/bg.jpg");stage.addChild(bg);bg.interactive=true;bg.on("touchstart",function(e){console.log("touchstart",e.data.global)});bg.on("pointerup",function(e){console.log("touchend")});//小...