带有大图像的 jQuery 裁剪工具
我有一个显示图像的 标签。如果我加载大图像,我需要使用以下 CSS 代码重新调整
.resize-large-images
{
min-width:100px;
max-width:100%;
width:auto !important;
height: auto !important;
}
其大小 CSS 工作正常。但是当我将它与 jcrop
一起使用时,它会再次以实际大小加载。我应该怎么做才能克服这个问题?编辑 jcrop
文件?或者有其他选择吗?
I have a <img>
tag which shows images. If I load large images I need to re-size it using the following CSS code
.resize-large-images
{
min-width:100px;
max-width:100%;
width:auto !important;
height: auto !important;
}
The CSS works fine. But when I use it with the jcrop
it again loads in the actual size. What should I do to overcome this issue ? Edit jcrop
files ? Or is there any alternatives ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)