使用 CSS 旋转图像并将其放回原位

发布于 2024-08-30 01:56:18 字数 249 浏览 1 评论 0原文

当我使用 CSS 旋转位于浮动 div 中的大图像时

    -moz-transform: rotate(270deg);

(使用 Firefox 3.6.3 显示页面),它会弄乱页面布局:显然,图像的大小是在旋转之前评估的。

此外,图像会发生移位,部分超出屏幕,因为它旋转的点是固定的。我该如何改进这个? (-moz-transform-origin 在这里没有帮助。)

When I rotate a large image with CSS

    -moz-transform: rotate(270deg);

which sits in a floating div (using Firefox 3.6.3 to display the page), it messes up the page layout: Apparently, the size of the image is evaluated before it has been rotated.

Furthermore, the image is displaced, partly being out of the screen, because the point it is rotated about is fixed. How can I improve this? (-moz-transform-origin doesn't help here.)

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

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

发布评论

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

评论(1

匿名的好友 2024-09-06 01:56:18

我会设置一个有意义的 moz-transform-origin 点(对于方形图像,50% 50% 可能是一个不错的选择,或者如果您的图像形状不同,则更聪明),并使用 moz-transform:scale(sx[ , sy]) 以确保最终图像适合布局算法最初给您的空间。

I would set a moz-transform-origin point that makes sense (50% 50% might be a good bet for square images, or be more clever if your images vary in shape), and use a moz-transform: scale(sx[, sy]) to ensure that the final image fits in the space originally given to you by the layout algorithm.

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