基本上在我的html中的javascript中我希望能够做到这样的事情。
var penpressure = inputDevice.getPressure();
console.log(penpressure);
理想情况下,这也适用于其他类型的压力输入,桌面机器上的wacom(没有插件)只是来自普通的驱动程序。不同的平板电脑与手写笔等..
答案 0 :(得分:0)
const HAS_POINTER = ('onpointermove' in window);
window.addEventListener(HAS_POINTER ? 'pointermove' : 'mousemove', (e) => {
const pressure = HAS_POINTER ? e.pressure : 1;
context.lineWidth = pressure * YOUR_STROKE_SIZE;
draw();
}
最大压力为1
希望有帮助