使用pixi.js 4.8.7
工程里所有的图片在开发者工具都能显示,但是在真机上测试不显示图片
里面是我想实现的图片拖拽的一部分内容
export default class Map{
constructor(){
this.mapImage = new PIXI.Sprite.fromImage('./img/map_00.png');
this.container = new PIXI.Container();
this.container.interactive = true;
this.buttonMode = true;
this.container
.on('pointerdown', onDragStart)
.on('pointerup', onDragEnd)
.on('pointerupoutside', onDragEnd)
.on('pointermove', onDragMove);
}
apply(){
this.container.addChild(this.mapImage);
return this.container;
}
}
这里引用
const theMap = new Map();
const TheMapDia = theMap.apply();
container.addChild(TheMapDia);
开发者工具里有图片
但是真机里没有
使用绝对路径看看,是否是ios手机,如果是图片大于2000*2000也是显示不出来的