问题描述
I want the flash light effect to follow mobile touch events in pixi js
我试图让 pixijs 蒙版过滤器响应,因为闪光灯效果跟随鼠标指针,所以我需要让它跟随触摸事件。这是效果的链接 https://pixijs.io/examples/#/masks/filter.js
const app = new PIXI.Application();
document.querySelector('#landing').appendChild(app.view);
// Inner radius of the circle
const radius = 90;
// The blur amount
const blurSize = 52;
app.loader.add('landing','./imgs/bg.png');
app.loader.load(setup);
function setup(loader,resources) {
const background = new PIXI.Sprite(resources.landing.texture);
app.stage.addChild(background);
background.width = app.screen.width;
background.height = app.screen.height;
const circle = new PIXI.Graphics()
.beginFill(0xFF0000)
.drawCircle(radius + blurSize,radius + blurSize,radius)
.endFill();
circle.filters = [new PIXI.filters.BlurFilter(blurSize)];
const bounds = new PIXI.Rectangle(0,(radius + blurSize) * 2,(radius + blurSize) * 2);
const texture = app.renderer.generateTexture(circle,PIXI.SCALE_MODES.NEAREST,1,bounds);
const focus = new PIXI.Sprite(texture);
app.stage.addChild(focus);
background.mask = focus;
app.stage.interactive = true;
app.stage.on('mousemove',pointerMove);
function pointerMove(event) {
focus.position.x = event.data.global.x - focus.width / 2;
focus.position.y = event.data.global.y - focus.height / 2;
}
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.3.7/pixi.min.js"></script>
解决方法
移动事件系统与计算机事件系统有一些区别。鼠标事件的名称以“鼠标”开头,但移动事件的名称以“触摸”开头。因此,对于移动设备,您应该将“mousemove”更改为“touchmove”。如果你想同时在手机和电脑上工作,你应该同时写“touchmove”和“mousemove”:
app.stage.on('mousemove',pointerMove);
app.stage.on('touchmove',pointerMove);