이 글에서는 간단한 마우스 통과 효과를 얻기 위해 마우스 이벤트를 사용하는 방법을 주로 소개합니다. 필요한 친구들은 참고하면 됩니다.
코드는 매우 간단합니다. 여기에는 BB가 많지 않습니다. 그냥 제공하세요.
코드는 다음과 같습니다.
<!doctype html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <title> Document </title> <style type="text/css"> body,ul,li{margin:0; padding :0; list-style :none} ul li{width:100px; height:100px; border:1px solid #f00; float:left; margin:50px 10px; background-color :#ffffff;} ul li.current{border:1px solid #dfdfdf; background-color:#ff0000;} </style> <script type="text/ javascript " src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script> </head> <body> <h1>鼠标经过下面的块</h1> <ul> <li></li> <li></li> <li></li> <li></li> </ul> </body> </html> <script type="text/javascript"> $("ul li").mouseover(function() { $(this).addClass("current"); }).mouseout(function() { $(this).removeClass("current"); }); </script>
아주 간단한 코드이니 참고하셔서 자유롭게 확장해보시길 바랍니다.
위 내용은 JS 마우스 이벤트는 간단한 마우스 전달 효과를 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!