返回顶部

electron 项目不支持触摸事件(触摸屏、touch)

mainWindow = new BrowserWindow({
 width: 1024,
 height: 768,
})

// 以下代码用于控制渲染进程devtools启用触摸模拟
mainWindow.webContents.debugger.attach('1.3')
mainWindow.webContents.debugger.sendCommand('Emulation.setTouchEmulationEnabled', {
 enabled: true,
 configuration: 'mobile',
})
mainWindow.webContents.debugger.sendCommand('Emulation.setEmitTouchEventsForMouse', { 
enabled: true
})

// 省略...

  

posted on 2024-07-01 11:18  孤僻而冷漠  阅读(74)  评论(0编辑  收藏  举报

导航