因此我添加了一些转换到图像滚动:
$(document).ready(function(){
$( .project ).hover(function(){
$(this).children( .description ).stop().slideDown( fast );
}, function(){
$(this).children( .description ).stop().slideUp( fast );
});
});
然而,描述框有时只向下滑过一半,甚至只有它应该滑过长度的十分之一...描述框是300x300px, 并且应该滑到300x300px的盒子里...
如果我很快地在.Project上徘徊, 停止()能否加入队列,