0
是我的jQuery代碼透明度問題與jQuery
$("span.stage").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
$(".stagehover").css("display","block").fadeIn(-10);
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
$(".stagehover").css("display","none").fadeOut("slow");
});
它工作在frirfox不錯,但它顯示了在IE黑色邊框onmousover。我使用的PNG圖片文件。
請幫我解決這個問題。