我是jQuery初學者,請耐心等待。jquery文檔準備好後做簡單動畫
我試圖slideDown
頁面加載後的一系列圖像(document.ready()
)。
這是我的JS代碼:
<script>
$(document).ready(function(){
$(".product_image").slideDown("200");
$(".product_image").hover(function(){
$(this).fadeOut(200);
$(this).fadeIn(600);
$(this).css("background","black");
$(this).slideDown("200");
//$(this).hide();
})
});
</script>
這是我的HTML:
<img src="Images/products/3.jpg" class="product_image"/>
懸停功能可以正常使用,但slideDown
無可奈何。它應該在$(document).ready()
函數後面生成動畫。
感謝您的幫助
感謝您的幫助,它太糟糕了我只能給予好評一次 –