调整图像的 jQuery 调整大小,使其一开始不会显得很大
各位,抱歉,这个标题有点尴尬。
无论如何,我正在尝试使用以下 jQuery 片段调整图像大小:
$(window).load(function(){
$('img.FancyBox').each(function(){
$(this).width($(this).width() * 0.25);
});
});
现在,这可以工作,但如果我能找到一种方法来指定图像加载其原始大小的 25%,而不是加载,那就太好了它们的原始大小,并按比例缩小。
它有效,但看起来有点奇怪。
任何类型的解决方法都会很棒!
谢谢!
Kind of an awkward title guys, sorry.
Anyway, I'm trying to resize my images with the following snippet of jQuery:
$(window).load(function(){
$('img.FancyBox').each(function(){
$(this).width($(this).width() * 0.25);
});
});
Now, this works, but it would be really nice if I could find a way to specify the images to load 25% of their original size, rather than loading their original size, and scaling down.
It works, but it looks kind of odd.
Any sort of workaround would be great!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 CSS 中将
.FancyBox
设置为display: none;
,然后执行以下操作:you could set
.FancyBox
todisplay: none;
in your CSS and then do: