getBoundingClientRect().width 和 offsetWidth的結果基本是一致的。
但是當元素進行了transfrom 操作,getBoundingClientRect().width展示的是操作后的真實渲染寬度。而offsetWidth是未transfrom 操作的寬度。

image.png

image.png
getBoundingClientRect().width 和 offsetWidth的結果基本是一致的。
但是當元素進行了transfrom 操作,getBoundingClientRect().width展示的是操作后的真實渲染寬度。而offsetWidth是未transfrom 操作的寬度。