Rails 上的 CSS 或 jQuery / 如何“填充框架”有图像?

发布于 2024-12-01 09:57:23 字数 247 浏览 0 评论 0原文

在 indesign 中执行“填充框架”之类的操作的最佳技术是什么?意思是获取图像并缩放最短的边以使其适合,然后裁剪其余部分?

这可以用纯 CSS 实现吗?

我正在使用 Rails 和 jQuery。

代码可能是这样的:

<div class="image_container"><img class="image" src=""></div>

Whats the best technique for doing something like "fill frame" in indesign .. meaning take the image and scale the shortest side so it fits, then clipping the rest?

Is this possible with pure CSS ?

I am using Rails with jQuery..

The code could be something like this:

<div class="image_container"><img class="image" src=""></div>

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

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

发布评论

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

评论(2

淡水深流 2024-12-08 09:57:23

如果你有固定大小的 image_container ,你可以做到这一点:

.image_container{
  width:200px;
  height:100px;
  overflow:hidden;
}

.image_container img{width:200px;}

这将按宽度缩放图像并按高度隐藏。

You can do it, if you had fixed size of image_container:

.image_container{
  width:200px;
  height:100px;
  overflow:hidden;
}

.image_container img{width:200px;}

This will scale image by width and hide by height.

画中仙 2024-12-08 09:57:23

假设图像的高度比宽度长。它将有一个用于风景图像的空白空间。

That assumes that the image is longer on its height than its width. It will have a blank space for landscape images.

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