我的一些方块有点问题。它们应该在用户鼠标悬停时消失,然后在鼠标移出时恢复正常的不透明度。问题是当我鼠标移出时它们不会恢复到正常的不透明度。我该如何解决?
<div class="test"></div>
$('.test').each(function(){
$(this).animate({'opacity': '1.0'}, 500);
$(this).hover(function(){
$(this).stop(1).animate({'opacity': '1.0'}, 500);
}, function(){
$(this).stop(1).animate({'opacity': '0.6'}, 500) // at the end of animation
});
});
我做了一个JS Bin
任何帮助/教程将不胜感激。