我们有一个链接:
<a href="#">
Some text
<span style="width: 50px; height: 50px; background: url(image.png); overflow: hidden; opacity: 0;"></span>
</a>
当链接悬停时,我们希望通过一些动画更改<span>
的不透明度。
我们怎么做?
答案 0 :(得分:46)
另一种可能的解决方案:
$("a span").hover(function(){
$(this).stop().animate({"opacity": 1});
},function(){
$(this).stop().animate({"opacity": 0});
});
如果你使用fadeOut(),跨度将崩溃,这样它就不会
修改
这要好得多:
$('a:has(span)').hover(function() {
$('span', this).stop().animate({"opacity": 1});
},function() {
$('span', this).stop().animate({"opacity": 0});
});
答案 1 :(得分:9)
像这样:
$('a:has(span)').hover(
function() { $('span', this).fadeIn(); },
function() { $('span', this).fadeOut(); }
);
答案 2 :(得分:3)