vue-waterfall-easy icon indicating copy to clipboard operation
vue-waterfall-easy copied to clipboard

关于移动端计算图片宽度问题

Open IceSakuraAzure opened this issue 2 years ago • 0 comments

代码中计算是这样的 imgWidth_c() { // 对于移动端重新计算图片宽度` return this.isMobile ? window.innerWidth / 2 - this.mobileGap : this.imgWidth},

这里使用innerWidth,等于完全忽略了父容器宽度,会导致图片大小异常,溢出父容器,建议这里使用容器宽度而不是window.innerWidth

IceSakuraAzure avatar Mar 25 '22 08:03 IceSakuraAzure