本文介绍了CSS转换:缩放比例不会改变DOM大小吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

转换后容器的DOM宽度与转换前相同吗?

Container's DOM width after transform is the same as before transform?

为什么?

var theScale = aNumber;
var containerWidth = theContainer.width();
alert(containerWidth);

// and the other prefixes, as well
theContainer.css("-webkit-transform", "scale(" + theScale + ")");

containerWidth = theContainer.width();
alert(containerWidth);   // the same value ???

推荐答案

变换不会影响元素的布局-更确切地说是框模型.它们纯粹是化妆品.从规范:

Transforms don't affect the layout — or more precisely the box model — of an element. They are purely cosmetic. From the spec:

这篇关于CSS转换:缩放比例不会改变DOM大小吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 09:50