この小さな問題を理解できないようです。クラス .nav_button を使用して div の外に移動すると、不透明度が変化しますが、ボタンを下から 15 ピクセル上に移動しても、2 番目のハンドラーで効果がないように見えますか?
J:
$(document).ready( function(){
$('.nav_button').hover(
function(){
$(this).animate({top:'15px',opacity:'0.5'},'slow')
},
function(){
$(this).animate({bottom:'15px',opacity:'1'},'slow')
});
});
CSS:
.nav_button{
height:80px;
width:90px;
margin-right:3px;
border-radius:5px;
border:2px solid #555879;
background-color:#2182c2;
display:inline-block;
position:relative;
}