CSS 缩放,然后调整为原始大小

发布于 2024-12-22 03:48:48 字数 537 浏览 0 评论 0原文

我正在使用带有溢出:滚动的 div 创建“缩放”效果。这是我的困境:

我使用以下方法:

$('#object').css({ 'transform':'scale(50)' });

效果很好,但现在我想以数学方式将元素的大小调整为其原始宽度/高度(将比例保持在 50%,或任何可能的值...)

$('#object').css({ 'width': ?+'px', 'height': ?+'px' });

很确定这一点是一个数学问题,我可以解决以下问题:

new_width = parseInt(origWidth) + parseInt(Math.round(origWidth*((100-zoomScale)/100)));
new_height = parseInt(origHeight) + parseInt(Math.round(origHeight*((100-zoomScale)/100)));

任何帮助将不胜感激!

I'm creating a "zoom" effect with a div with overflow:scroll. Here's my dillema:

I use the following:

$('#object').css({ 'transform':'scale(50)' });

Which works beautifully, but now I would like to mathematically resize the element to it's original width/height (keeping the scale at 50%, or whatever the value might be...)

$('#object').css({ 'width': ?+'px', 'height': ?+'px' });

Pretty sure this is a math issue, I can get close with the following:

new_width = parseInt(origWidth) + parseInt(Math.round(origWidth*((100-zoomScale)/100)));
new_height = parseInt(origHeight) + parseInt(Math.round(origHeight*((100-zoomScale)/100)));

Any help would be appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女七分熟 2024-12-29 03:48:48

你的数学是错误的。

700 * 0.5 = 350

但是...如果 700 代表 50%,那么 100% 将是 1400 而不是 700 + 350。 ..

所以:

700 * 2 = 1400

假设我的变量是获得相反保持缩放的数学将是:

(1/0.5) * 700

数学公式将是:

(1/(zoomScale/100)) * originalValue

对于原始值,您可以使用 css widthheight 它们仍然是像素原始值,缩放值修改后的值将是 clientWidth、clientHeight、offsetWidth 和 offsetHeight 元素属性。

Your math is wrong.

700 * 0.5 = 350

But... if 700 represent 50%, then 100% will be 1400 and not 700 + 350...

So:

700 * 2 = 1400

supose my vars are that the math to get the oposite keep zoom will be:

(1/0.5) * 700

The math formula will be:

(1/(zoomScale/100)) * originalValue

For the original values, you can use the css width or height they will still the pixel original value, the modified by zoom value will be the clientWidth, clientHeight, offsetWidth and offsetHeight element properties.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文