0
我正在使用.animate函數來爲另一個div內的div製作動畫效果。 它工作正常,在同一頁面的div的第一塊,但它並沒有在其他divs。。動畫jquery無法正常工作
有關如何解決這個問題的任何想法?
這裏是的jsfiddle例如http://jsfiddle.net/atseros/CkaHG/2/
$(document).ready(function() {
$("#displayscroll").hover(
//on mouseover
function() {
$(this).animate({
height: '+=170'
}, 'slow'
);
},
//on mouseout
function() {
$(this).animate({
height: '-=170px'
}, 'slow'
);
}
);
});