我不太清楚發生了什麼,我試圖達到的效果是在firefox工作,但不是Internet Explorer 8jQuery的fadeTo效果是錯誤的IE 8
這裏是網頁:http://www.naitsa.ca/aspnet/YearEndShow.aspx
檢查標題(右側)中的頂部3個鏈接,當你將鼠標懸停在它們上方時,其中有聚光燈淡入淡出。
看起來,淡入淡出正在工作,但圖形顯示錯誤。它是一個透明的PNG。
這裏是JQuery的:
$(document).ready(function() {
$(".B1").hover(
function() {
$(this).stop(true, true).fadeTo(500, 1.00);
},
function() {
$(this).stop(true, true).fadeTo(500, 0.00);
}
);
$(".B2").hover(
function() {
$(this).stop(true, true).fadeTo(500, 1.00);
},
function() {
$(this).stop(true, true).fadeTo(500, 0.00);
}
);
$(".B3").hover(
function() {
$(this).stop(true, true).fadeTo(500, 1.00);
},
function() {
$(this).stop(true, true).fadeTo(500, 0.00);
}
);
});
這裏是CSS:
.B1 {
background:Transparent url(App_Themes/BlueGrey/Images/YearEndShow/Buttons-light-and-shadow.png) no-repeat;
opacity: 0.0;
filter: alpha(opacity = 0);
}
.B2 {
background:Transparent url(App_Themes/BlueGrey/Images/YearEndShow/Buttons-light-and-shadow.png) no-repeat;
opacity: 0.0;
filter: alpha(opacity = 0);
}
.B3 {
background:Transparent url(App_Themes/BlueGrey/Images/YearEndShow/Buttons-light-and-shadow.png) no-repeat;
opacity: 0.0;
filter: alpha(opacity = 0);
}
下面是HTML:
<table style="width:600px; position:relative; top:-2px;">
<tr>
<td style="background:url(App_Themes/BlueGrey/Images/YearEndShow/buttons-yearendshow-info.png) no-repeat;"><div style="width:200px; height:120px; display:block;" class="B3"><a href="YearEndShow.aspx" style="width:200px; height:120px; display:block;"></a></div></td>
<td style="background:url(App_Themes/BlueGrey/Images/YearEndShow/buttons-Artist-Info.png) no-repeat;"><div style="width:200px; height:120px; display:block;" class="B2"><a href="YearEndShowArtists.aspx" style="width:200px; height:120px; display:block;"></a></div></td>
<td style="background:url(App_Themes/BlueGrey/Images/YearEndShow/buttons-Event-Info.png) no-repeat;"><div style="width:200px; height:120px; display:block;" class="B1"><a href="YearEndShowInfo.aspx" style="width:200px; height:120px; display:block;"></a></div></td>
</tr>
</table>
任何想法,爲什麼圖形出現如此怪異?
謝謝!
我真的很感謝你經歷了所有的麻煩。我將執行這個明天。謝謝 – Mausimo 2011-03-16 04:20:42