Rails 上的 CSS 或 jQuery / 如何“填充框架”有图像?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有固定大小的 image_container ,你可以做到这一点:
这将按宽度缩放图像并按高度隐藏。
You can do it, if you had fixed size of image_container:
This will scale image by width and hide by height.
假设图像的高度比宽度长。它将有一个用于风景图像的空白空间。
That assumes that the image is longer on its height than its width. It will have a blank space for landscape images.