Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何 jQuery 解决方案可以找到确切的显示高度-webkit-transform: scale(0.7851);
-webkit-transform: scale(0.7851);
价值可能会有所不同,这scale就是为什么要寻找合适的解决方案
scale
不幸的是,测试了这些选项还没有找到解决方案:(
height() innerHeight() outerHeight() outerHeight(true)
我认为这个问题只能解决一个数学基础;)
使用getBoundingClientRect().
getBoundingClientRect()
element.getBoundingClientRect().height
见演示。