列举几个简单的文章排行榜数字效果
一:使用list-style来显示数字、圆点、字母或者图片
li{width:300px; border-bottom: 1px dotted #ccc; line-height: 30px; height: 30px; overflow:hidden } li{list-style: decimal inside; }
登录后复制文章1 文章2
二:使用伪元素:before
使用这种方法,需要在父级标签设置counter-reset:section;
ul{counter-reset:section;} li{width:300px; border-bottom: 1px dotted #ccc; line-height: 30px; height: 30px; overflow:hidden } li:before{counter-increment:section;content:counter(section);display:inline-block;padding:0 6px;margin-right:10px;height:18px;line-height:18px;background:#717070;color:#fff;border-radius:3px;font-size:9px} li:nth-child(1):before{background:#ff6a00} li:nth-child(2):before{background:#107db4} li:nth-child(3):before{background:#56ae11}
登录后复制文章1 文章2 文章3 文章4
三:使用js实现,先引入jquery
ul{counter-reset:section;} li{width:300px; border-bottom: 1px dotted #ccc; line-height: 30px; height: 30px; overflow:hidden } li i{display:inline-block;font-style:initial;padding:0 6px;margin-right:10px;height:18px;line-height:18px;background:#717070;color:#fff;border-radius:3px;font-size:9px} .red1{background:#ff6a00} .red2{background:#107db4} .red3{background:#56ae11}
登录后复制文章1 文章2 文章3 文章4 listsort() //显示排行 function listsort() { var index = 0; $(“li”).each(function () { index++; var num = $(“” + index + “”); if (index <= 3) num.addClass("red" +index); $(this).prepend(num); }); }
比较三种方法,无论是从代码量、还是特效,推荐第二种方法,而且便以维护
地址:http://cssteach.com/html/show-12-88.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3119256.html