我有這樣的javascript代碼:jQuery的CSS動畫,背景圖片
$(".linksColl a li").hover(function() {
$(this).css({
"background-image" : "url(images/links/linkHover1.png)",
"background-position" : "center center",
"background-repeat" : "no-repeat"});
});
$(".linksColl a li").mouseout(function() {
$(this).css({
"background-image" : "",
"background-position" : "",
"background-repeat" : ""});
});
我想動畫添加到它像fadeIn
和fadeOut
爲背景圖像,所以當懸停fadeIn
影響申請背景圖像和鼠標移開時fadeOut
效果申請背景圖片
我該怎麼做呢?
我想讓背景圖像淡入圖像 – Saleh 2011-04-16 16:13:00
在您的方法中。嘗試減少不透明度值.... – Anish 2011-04-16 16:15:00