在網(wǎng)頁設計中,鼠標懸停特效是非常常見的一種交互方式。而jQuery可以幫助我們實現(xiàn)這種特效,下面是一個使用jQuery實現(xiàn)鼠標懸停效果的例子:
<!DOCTYPE html> <html> <head> <title>鼠標懸停特效</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <style> #hover-div { width: 200px; height: 100px; background-color: #eee; text-align: center; line-height: 100px; font-size: 24px; cursor: pointer; transition: all .3s; } #hover-div:hover { background-color: #aaf; color: #fff; transform: scale(1.1); } </style> </head> <body> <div id="hover-div">鼠標懸停我吧!</div> <script> $(function() { $("#hover-div").mouseover(function() { $(this).css("background-color", "#aaf"); $(this).css("color", "#fff"); $(this).css("transform", "scale(1.1)"); }); $("#hover-div").mouseout(function() { $(this).css("background-color", "#eee"); $(this).css("color", "#000"); $(this).css("transform", "scale(1)"); }); }); </script> </body> </html>
上面的代碼中,我們使用jQuery的mouseover()和mouseout()方法,分別在鼠標懸停和鼠標離開時改變DIV的背景顏色、文字顏色和縮放大小,實現(xiàn)了一個簡單的鼠標懸停特效。
注意,我們在CSS中設置了DIV的過渡效果transition,這樣鼠標懸停和離開時就會有一個漸變的過程。
當然,如果只是對一個DIV做鼠標懸停特效,直接使用CSS也是非常簡單的。但是如果頁面中涉及到多個需要懸停特效的元素,使用jQuery就會更加方便靈活。