实现隔行换色效果的两种方式【实用】
实现隔行换色效果的两种方式【实用】
发布时间:2016-12-30 来源:查字典编辑
摘要:纯CSS方式实现隔行颜色交替、鼠标经过高亮颜色:ul{list-style:none}li:nth-child(odd){backgroun...

纯CSS方式实现隔行颜色交替、鼠标经过高亮颜色:

<html> <head> <title></title> <style type="text/css"> ul{list-style:none} li:nth-child(odd){background-color:#eee} li:hover{background-color:Yellow} </style> </head> <body> <ul> <li>111</li> <li>111</li> <li>111</li> <li>111</li> <li>111</li> <li>111</li> <li>111</li> </ul> </body> </html>

js方式实现隔行颜色交替、鼠标经过高亮颜色:

<html> <head> <title></title> <script src="http://www.jb51.net/cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> <style type="text/css"> .alter-item { background-color: #eee; } .hightlight { background-color: Yellow; } </style> <script type="text/javascript"> $(function () { //隔行颜色 $("ul li:odd").addClass("alter-item"); method1(); }); //方法1: function method1() { $("ul li").hover(function () { $(this).addClass("hightlight"); }, function () { $(this).removeClass("hightlight") }); } //方法2: function method2() { $("ul li").mouseover(function () { $(this).addClass("hightlight").siblings().removeClass("hightlight"); }); } </script> </head> <body> <ul> <li>111</li> <li>222222222</li> <li>111</li> <li>444444444444444444444</li> <li>111</li> <li>111</li> <li>111</li> </ul> </body> </html>

以上就是本文的全部内容,希望对大家有所帮助,同时也希望多多支持查字典教程网!

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类