使用 css 在 html 中的两个图像之间切换
我正在开发一个 WordPress 主题,并希望在悬停时在两个缩略图之间切换。
我的代码看起来像这样:
<a class="thumb" href="posturl"> <img src="img1.jpg" class="image1" /> <img src="img2.jpg" class="image2" /> </a>
所以现在我需要一些 css 来在悬停时在 image1 和 image2 之间进行更改。
如果有人知道我如何使用一些 JavaScript 获得淡入淡出效果,我将不胜感激。
I'm working on a wordpress theme and want to switch between two thumbnail images on hover.
The code that i have looks something like this :
<a class="thumb" href="posturl"> <img src="img1.jpg" class="image1" /> <img src="img2.jpg" class="image2" /> </a>
So now I need some css to change between image1 and image2 on hover.
And if somebody knows how i can get a fade effect with some javascript that would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用大图像,则使用悬停时要小心。浏览器第一次可能需要一段时间才能显示图像。为了避免这种情况,如果你想在 js 中获得一些效果,请尝试使用精灵并更改悬停时的背景位置
。也许精灵不是最好的答案,这取决于你想要的效果。为此,您需要一个像 Mootools 或 Jquery 这样的框架。
祝你好运
be careful when using hover if you are using large images.. browser might take a while to show the image for the first time. To avoid that try using sprites and changing the background position on hover
if you want some effects in js.. maybe sprites are not the best answer, it depends on the effect that you want. for that you'll need a framework like Mootools or Jquery.
Good Luck
您不需要其中的两个
标签,您只需在 CSS 中引用图像和悬停状态:
最基本的悬停示例。
您还可以使用 CSS 精灵:
这会将背景推到左侧,其中 60px 是第二个图像的宽度。
对于淡入淡出的图像,您可以使用 CSS3 过渡,但 IE 直到版本 9 才支持此功能。
You don't need the two
<img>
tags in there, you just have to reference the images and hover state in CSS:The most basic of hover examples.
You can also use CSS sprites:
This shoves the background to the left where 60px is the width of your second image.
For fading images you can use CSS3 transtitions, but IE does not support this until Version 9.
首先,您想要摆脱 img 标签并仅使用 css:
您可以使用 javascript,但这会变得非常复杂,但是 CSS3 很快就会准备好淡入淡出效果:
First, you want to get rid of the img tags and use only css:
You could use javascript but that would get very complicated, CSS3 however will have fade effects ready soon:
对于过渡,请查看 css 过渡:
http://net.tutsplus.com/tutorials/html-css-techniques/css-fundametals-css-3-transitions/
for transition, take a look at css transitions:
http://net.tutsplus.com/tutorials/html-css-techniques/css-fundametals-css-3-transitions/