如果鼠标结束,我在一些帮助下制作了一些样式来移动文本。我的问题是我无法分开动作。如果我结束了任何盒子,那么所有盒子都会产生效果。
$(document).ready(function(){
$('.up-down').mouseover(function(){
$('.default').stop().animate({
height: 200
}, 200);
}).mouseout(function(){
$('.default').stop().animate({
height: 240
}, 200)
})
});
看这里:http: //jsfiddle.net/snHhN/