有没有办法禁用/锁定 Chrome 浏览器中的鼠标/触摸板缩放功能?我发现自己意外触发 ctrl-wheel 或触摸板-two-finger 的次数比故意触发的次数要多得多。
作为事后的临时解决办法,Ctrl-0 将快速将缩放比例恢复到 100%。
答案1
对于快速而肮脏的解决方案,我发现@http://productforums.google.com/forum/#!category-topic/chrome/discuss-chrome/-rtDLZmN9bk
关注了 rd2020 对 AutoHotkey 的评论(因为我已经在其他方面运行它了)
下载 AutoHotKey 软件在 AutoHotkey.ahk 文件中,添加这些对 Cntrl+MouseWheelScrolling 不执行任何操作
#IfWinActive ahk_class Chrome_WidgetWin_1
{
^WheelDown::return
^WheelUp::return
#MaxHotkeysPerInterval 1000
}
答案2
答案3
做
<meta content='True' name='HandheldFriendly' />
<meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' />
不适合你?
答案4
然而这在 Chrome 上还无法实现,但你可以使用一个名为变焦锁定。
对于 Windows,有一个解决方案Google 产品论坛 open the - controlpanel hardware settings mouse device settings
,然后搜索可以禁用捏合缩放的设置。
另请参阅讨论。