所以我在图像翻转中添加了一些过渡:
$(document).ready(function(){
$('.project').hover(function(){
$(this).children('.description').stop().slideDown('fast');
}, function(){
$(this).children('.description').stop().slideUp('fast');
});
});
然而,有时描述框只向下滑动一半,甚至只是它应该滑动的长度的十分之一......描述框是 300 x 300px,应该滑入一个 300x300px 的盒子......
如果我很快将鼠标悬停在 .project 上,这似乎会发生,stop() 是否可以将自身添加到队列中,从而在不应该的时候停止事情?