按鈕移上變色效果 複製程式碼 程式碼如下: <BR>. round-corner-btn { <BR>-moz-border-radius:4px; <BR>-webkit-border-radius: 4px; <BR>-khtml-border-radius: 4px; <BR>border-radius: 4px ; <br><br>width:200px; height:40px; line-height: 40px; <BR>background: green; <BR>display:inline-block; <BR>color:white; <BR>display:inline-block; <BR>color:white; <BR>text-align : center; <br>cursor: pointer; <br>} <BR><BR>.avatar_size{ <BR>font-size:12px; <BR>text-align: center; <br>margin-top:4px; <br>} <BR><BR>.btn-hover{ <BR>opacity: 0.8; <BR>} <BR> 按鈕 <BR>$('.round-corner-btn').hover(function(){ <BR>$(this).toggleClass('btn-hover', 200); <BR>})