滑鼠懸浮改變元素的樣式離開樣式還原

antzone發表於2018-02-08

實際應用中經常有這樣的功能,當滑鼠懸浮能夠改變元素樣式,滑鼠指標離開時又會恢復原貌。可以提高辨識度,讓使用者明確的感知滑鼠指標停留的問題,非常的人性化,下面就通過程式碼例項介紹一下如何實現此功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
#antzone{
  width:200px;
  height:100px;
  background:#ccc;
  cursor:pointer;
}
.softwhy{
  border:1px solid blue;
  width:198px;
  height:98px;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function () {
 $("#antzone").mouseover(function () {
   $(this).addClass("softwhy");
 });
 $("#antzone").mouseout(function () {
   $(this).removeClass("softwhy");
 });
});
</script>
</head>
<body>
<div id="antzone"></div>
</body>
</html>

上面的程式碼實現了我們的要求,程式碼比較簡單,更多內容參閱相關閱讀。

相關閱讀:

(1).mouseover事件參閱jQuery mouseover 事件一章節。

(2).mouseout事件參閱jQuery mouseout 事件一章節.

(3).addClass()參閱jQuery addClass()一章節。

(4).removeClass()參閱jQuery removeClass()章節。

相關文章