javascript - 单击时调整所有图像的大小
我正在创建一个图像库,我希望用户可以在小、中、大缩略图之间进行选择,并且可以在不重新加载页面的情况下进行更改。 Jaavascript 会是什么样子,以便在鼠标单击按钮时,具有特定类的所有图像都会动态调整大小?
I am creating an image gallery of sorts and I want users to have a choice between small, medium, and large thumbnails and have it change without reloading the page. What would the Jaavascript be so that on a mouseclick of a button, all the images with a certain class get resized dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为您的不同体型设置班级。
set up classes for your different sizes.
使用 jQuery:
不能保证这会完美工作,但您至少可以在其基础上添加不同的大小增量等。
With jQuery:
No guarantees that this will work perfectly, but you can at least build off of it to add different size increments, etc.