我想使用触摸手势转到上一页或下一页,这是Chromium中的默认设置。在Electron中是否有启用此功能的开关?我仅找到启用触摸事件的教程。
我在npm上安装了“电子触摸屏”,并将新窗口加载为TouchscreenWindow,但是我仍然没有任何手势。
const TouchscreenWindow = require('electron-touchscreen');
app.on('ready', function() {
const { width, height } = electron.screen.getPrimaryDisplay().workAreaSize
// Create new window
mainWindow = new TouchscreenWindow({title: "title", width, height, icon: __dirname + '/title.ico'});
// Load html into window
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}));
});
Chromium开关称为“ --overscroll-history-navigation”,但启用它也不会改变任何内容。
NPM中的电子导航软件包是否可以这样做?