鼠标悬停时弹出 Jquery 图像
我想知道如何在 jQuery 中实现这种过渡效果 -
我有一张图像,当我用鼠标悬停在它上面时,图像会稍微过渡(尺寸放大)&当我将鼠标悬停在图像之外时,它会恢复到原始大小。
此行为就像我们在 Google 图片
I was wondering how would one do this transition effect in jQuery -
I have an image, when I hover over it with my mouse, the image slightly transitions out (enlarges in size) & when I hover out of the image it falls back to its original size.
This behaviour is just like what we see in Google Images
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 jQuery,但你可以使用 CSS3 过渡。 CSS3 过渡并不适用于所有浏览器,但如果您想在 FF 和 Webkit 中获得乐趣...
假设您的图像包含在
标记中(编辑:示例@ http://jsfiddle.net/Kai/x4Frn/):
I'm not sure about jQuery, but you can use CSS3 transitions. CSS3 transitions don't work in every browser, but if you want to have fun in FF and Webkit...
Assuming your images are wrapped in
<a>
tags (Edit: Example @ http://jsfiddle.net/Kai/x4Frn/):查看以下链接 -
http://www. sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/
http: //justinfarmer.com/?p=31
您可以通过谷歌搜索更多内容。
Check out the below links -
http://www.sohtanaka.com/web-design/fancy-thumbnail-hover-effect-w-jquery/
http://justinfarmer.com/?p=31
You can google out for more of them.