码迷,mamicode.com
首页 > Web开发 > 详细

js产品分类列表练习

时间:2016-03-15 16:01:57      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

js产品分类列表练习

css:

*{padding: 0;margin: 0;}
ul,li{list-style: none;}
body{color: #666;background: #f5f5f5;}
a{text-decoration: none;color: #666;}
.cont{
    width: 400px;
    margin: 30px auto;
    position: relative;
    background: #fff;
    box-shadow: 2px 2px 5px #e6e2e2;
}
.tit_1,.tit_2,.tit_3,.tit_4{/*分类标题样式*/
    height: 44px;
    line-height: 44px;
    position: relative;
    padding-left: 40px;
}
.tit_1:before{/*标题部分的小三角形*/
    content: ‘‘;
    position: absolute;
    left: 15px;
    top: 12px;
    border:10px solid transparent;
    border-left-color:#ccc;
}
.tit_2:before{/*标题部分的小三角形*/
    content: ‘‘;
    position: absolute;
    left: 15px;
    top: 12px;
    border:10px solid transparent;
    border-left-color:#fff;
}

.tit_3:before{/*标题部分的小三角形*/
    content: ‘‘;
    position: absolute;
    left: 15px;
    top: 17px;
    border:10px solid transparent;
    border-top-color:#ccc;
}
.tit_4:before{/*标题部分的小三角形*/
    content: ‘‘;
    position: absolute;
    left: 15px;
    top: 17px;
    border:10px solid transparent;
    border-top-color:#fff;
}
.active{/*列表内容的样式*/
    height: 28px;
    line-height: 28px;
    padding-left: 40px;
    cursor: pointer;
}
#ul1{
    padding: 20px 0;
}

.hidden{/*隐藏列表内容*/
    display: none;
}
.on{/*显示列表内容*/
    display: block;
}

js产品分类列表练习

标签:

原文地址:http://www.cnblogs.com/jnslove/p/5279840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!