How do you prevent firefox from zooming in when pressing ctrl and +?

前端 未结 3 740
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-23 11:26

I am trying to use the ctrl and + combination within firefox for a different action for our web application. How could I prevent firefox from zooming when our web application i

3条回答
  •  旧时难觅i
    2021-01-23 12:15

    According to this resource http://www.arraystudio.com/as-workshop/disable-ctrl-n-and-other-ctrl-key-combinations-in-javascript.html, you should be able to prevent any control keys.

    I have used similar techniques, by catching all events on the body tag, and if they are the F keys, then returning a false to veto.

提交回复
热议问题