在網(wǎng)頁設(shè)計(jì)中,鼠標(biāo)懸停特效是非常常見的一種交互方式。而jQuery可以幫助我們實(shí)現(xiàn)這種特效,下面是一個(gè)使用jQuery實(shí)現(xiàn)鼠標(biāo)懸停效果的例子:
<!DOCTYPE html> <html> <head> <title>鼠標(biāo)懸停特效</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">鼠標(biāo)懸停我吧!</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()方法,分別在鼠標(biāo)懸停和鼠標(biāo)離開時(shí)改變DIV的背景顏色、文字顏色和縮放大小,實(shí)現(xiàn)了一個(gè)簡單的鼠標(biāo)懸停特效。
注意,我們?cè)贑SS中設(shè)置了DIV的過渡效果transition,這樣鼠標(biāo)懸停和離開時(shí)就會(huì)有一個(gè)漸變的過程。
當(dāng)然,如果只是對(duì)一個(gè)DIV做鼠標(biāo)懸停特效,直接使用CSS也是非常簡單的。但是如果頁面中涉及到多個(gè)需要懸停特效的元素,使用jQuery就會(huì)更加方便靈活。