悬停时的不透明度(jQuery)

时间:2010-01-24 15:04:24

标签: jquery animation hover opacity

我们有一个链接:

<a href="#">
    Some text
    <span style="width: 50px; height: 50px; background: url(image.png); overflow: hidden; opacity: 0;"></span>
</a>

当链接悬停时,我们希望通过一些动画更改<span>的不透明度。

我们怎么做?

3 个答案:

答案 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)

使用.fadeTo()

$( 'a' ).hover(
    function() { $( this ).fadeTo( 'fast', '1'); },
    function() { $( this ).fadeTo( 'fast', '.4'); }
);

演示:见fiddle