我有一些div的,在他們的圖像和文字在頁面上,都具有相同的內容:DIV透明度不改變
<div class="indexThumb">
<img src="img.jpg" />
<div class="picWrapper">
<p>some text</p>
</div>
</div>
,我試圖動畫通過jQuery的動畫不透明度()函數頁面加載但它不工作。下面是我的javascript(我已經包括了最新的jQuery庫):
$(function(){
$('.indexThumb').animate({opacity:0.3}, 1000);
});
您嘗試過哪種瀏覽器? –
你在IE中測試它嗎?它在這裏工作http://jsfiddle.net/yVNQx/ – Rafay
我使用的是火狐 – fridgerator