我正在尝试在按钮上淡入背景图像mouseover
(并在 上淡出mouseout
),而实际按钮文本不会淡出。
$('btn').hover(function () {
$('btn', this).stop().animate({
"opacity": 1
});
}, function () {
$('btn', this).stop().animate({
"opacity": 0
});
});
示例:http: //jsfiddle.net/craigzilla/fFq2A