JS mouse事件实现简单的鼠标经过特效
程序员文章站
2022-05-19 12:54:32
...
这篇文章主要介绍了使用mouse事件实现简单的鼠标经过特效的方法,需要的朋友可以参考下
代码超级简单,这里就不多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 mouse事件实现简单的鼠标经过特效的详细内容,更多请关注其它相关文章!
推荐阅读
-
一款css实现的鼠标经过按钮的特效
-
CSS3+js实现简单的时钟特效
-
一款纯css3实现的鼠标经过按钮特效教程
-
使用JS中的鼠标移动和鼠标移除事件实现简单的画图工具
-
JS实现超级好看的鼠标小尾巴特效
-
用html+css+js实现的一个简单的图片切换特效_javascript技巧
-
9款基于CSS3 Transitions实现的鼠标经过图标悬停特效_html/css_WEB-ITnose
-
用html+css+js实现的一个简单的图片切换特效_javascript技巧
-
js实现简单鼠标跟随效果的方法_javascript技巧
-
9款基于CSS3 Transitions实现的鼠标经过图标悬停特效_html/css_WEB-ITnose