欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

用jQuery toggleClass 實現(xiàn)鼠標移上變色

 更新時間:2014年05月14日 11:18:16   作者:  
這篇文章主要介紹了用jQuery toggleClass 實現(xiàn)鼠標移上變色,需要的朋友可以參考下
按鈕移上變色效果
復(fù)制代碼 代碼如下:

<style>
.round-corner-btn {
-moz-border-radius:4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;

width:200px; height:40px; line-height: 40px;
background: green;
display:inline-block;
color:white;
text-align : center;
cursor: pointer;
}

.avatar_size{
font-size:12px;
text-align: center;
margin-top:4px;
}

.btn-hover{
opacity: 0.8;
}
</style>
<div class='round-corner-btn'> 按鈕</div>
<script>
$('.round-corner-btn').hover(function(){
$(this).toggleClass('btn-hover', 200);
})
</script>

相關(guān)文章

最新評論