const minwidth = (this.$refs.progress.clientWidth / barwidth + this.percentum) * this.percentmax // 10 - 90const maxwidth = this.$refs.progress.clientWidth / barwidth * this.percentmax // 0 - 80minwidth 滑动取到的是10-90,maxwidth 滑动取到的是0-80 ,怎么取10-80
1 回答
摇曳的蔷薇
TA贡献1793条经验 获得超6个赞
minwidth = (minwidth-10) * (8/9) + 10;
maxwidth = maxwidth * (8/9) + 10;
可以拿已知的这个范围通过计算换算成目标范围啊
添加回答
举报
0/150
提交
取消