摘要: 解决 电脑默认缩放比不是100%的情况 let zoom = window.devicePixelRatio; document.body.style.zoom = 1/zoom; /** * 获取浏览器缩放百分比 */ function getZoom() { var ratio = 0, scr 阅读全文
posted @ 2021-09-23 16:24 JS-Feng 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: function stopZoom() { const keyCodeMap = { // 91: true, // command 61: true, 107: true, // 数字键盘 + 109: true, // 数字键盘 - 173: true, // 火狐 - 号 187: true, 阅读全文
posted @ 2021-09-23 14:28 JS-Feng 阅读(232) 评论(0) 推荐(0) 编辑