01_11.实现tab功能

1. 首先下载react以及browser.min.js

http://www.react-cn.com/downloads.html
https://www.npmjs.com/package/browser-js

2. 实现效果
01_11.实现tab功能_第1张图片
3. 代码块:
  • html



    
    
    
    Document
    
    
    
    


    
  • css
* {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
.wrapper {
    width: 1000px;
    height: 475px;
    margin: 100px auto 0;
}

.tab {
    border: 1px solid #ddd;
    border-bottom: 0;
    height: 36px;
    width: 320px;
}

.tab li {
    position: relative;
    float: left;
    width: 80px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    border-top: 4px solid #fff;
}

.tab span {
    position: absolute;
    right: 0;
    top: 10px;
    background: #ddd;
    width: 1px;
    height: 14px;
    overflow: hidden;
}

.products {
    width: 1002px;
    border: 1px solid #ddd;
    height: 476px;
}

.products .main {
    float: left;
    display: none;
}

.products .main.selected {
    display: block;
}

.tab li.active {
    border-color: red;
    border-bottom: 0;
}

你可能感兴趣的:(01_11.实现tab功能)