如何使用 jQuery 在点击时调整图像大小?
我有下一个问题:我有一个包含图像的 div
。
如果大于 div
的宽度,我需要调整该图像的大小,并且如果用户单击该图像,则以完整尺寸显示它。
div 宽度由窗口宽度管理。
我该怎么做?
I've the next problem: I've got a div
which contains an image.
I need this image resized if is bigger than the width of the div
, and if the user click the image, show it at the full size.
The div width is managed with the windows width.
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 .css() 函数来设置图像的大小,或者如果您想让图像变得更漂亮,您可以使用 .animate() 来动画更改。
假设您的图像的 id 是#myimage,这就是您的做法。
这假设您已经保存了图像的原始大小,否则无法计算图片曾经有多大。
编辑:
假设你的div的id是#mydiv,
当页面加载完成时,$(document).ready()被调用。
You can use the .css() function to set the size of the image, or if you want to make it a bit spiffier, you can use .animate() to animate the change.
Say your image's id is #myimage, this is how you would do it.
This assumes you already saved away the original size of the image, since otherwise, there's no way to calculate how big the picture used to be.
EDIT:
Assume your div's id is #mydiv
the $(document).ready() is called when the page finishes loading.
jQuery.popeye 是一个用于进行此类交互的灵活插件。
jQuery.popeye is a slick plugin for doing interactions like this.
可以使用 Jquery imagefit + 选择模态弹出框
Jquery imagefit can be used + a modal popup box of choice