jQuery 盒子问题
我正在尝试使用 jQuery 解决矩形问题。基本上,我有 3 个方形盒子,固定在一个更大的盒子里。
我知道较大的盒子的最大宽度为 500 像素。我不知道 1、2 或 3 的尺寸是多少 - 但我知道它们的纵横比可以改变,并且它们必须按比例适合盒子。
我将如何始终确保无论什么形状 - 500px 框内的 3 个矩形始终按比例调整大小?
I am trying to solve a rectangle problem using jQuery. Basically, I have 3 square boxes which fix inside a larger box.
I know the larger box has a max-width of 500px. I do not know what the sizes of 1, 2 or 3 will be - but I know that their aspect ratio's can change and that they must fit proportionally into the box.
How would I go about always ensuring that no matter what shape - the 3 rectangles are always proportionally sized inside the 500px box ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解出方程组后,我相信以下内容是正确的。
500 px、a1、a2 和 a3 是已知的。求解 w1,然后求解 w2 和 w3。使用 a1、a2 和 a3 确定 h1、h2 和 h3。
我相信你的算法应该是:
这是我遵循的步骤
After solving the system of equations, I believe the following is true.
500 px, a1, a2, and a3 are knowns. Solve for w1, then w2, and w3. Use a1,a2, and a3 to determine h1, h2, and h3.
I believe your algorithm should be:
Here are the steps I followed