let scrollBarHeight = '' if (this.scale > 1) { scrollBarHeight = 10 / Math.pow(this.scale, 1 / 1.5) + 'px' } else { scrollBarHeight = 10 / this.scale + 'px' } 对于放大的情况,不能直接除以scale,不是线性变化,太奇怪了。 chrome浏览器。
阅读量:1
点赞量:0