react中tab选项卡切换

直接上代码 不用的组件可以删了
在这里插入图片描述

import React from 'react';
import {
    NavLink
} from "react-router-dom";
import Otherbanner from '../otherbanner/index.js';
import Header from '../../header/index.js';
import Footer from '../../footer/index.js';
class Index extends React.Component{
	constructor(props){
		super(props);
		this.state={
			tabActiveIndex: 0
		}
	}

		
	render(){
		let tabActiveIndex = this.state.tabActiveIndex;
		return(
			<div>
				<div>
				<Header/>
				<Otherbanner/>
							<div className="m-sys-wrap">
							<div className="m-sys-inner">
								<div className="m-sys-header">
									
									<ul className="m-sys-tab-wrap">
										<li className={"m-sys-tab " + (tabActiveIndex === 0 ? 'active': '')} onClick={this.handleTabClick.bind(this, 0)}>											
											<span className="m-sys-tab-text">线上课</span>
                                            
										</li>
										<li className={"m-sys-tab " + (tabActiveIndex === 1 ? 'active': '')} onClick={this.handleTabClick.bind(this, 1)}>								
											<span className="m-sys-tab-text">线下课</span>
											
										</li>										
									</ul>
								</div>
								<div className="m-sys-content">
									<div className={"m-sys-view " + (tabActiveIndex === 0 ? 'active': '')}>
								     	<div className="mbox">
								                1111111111111111111111111
									    </div>
									</div>
									<div className={"m-sys-view " + (tabActiveIndex === 1 ? 'active': '')}>
								     	<div className="mbox">
								               2222222222222222222222222222
									    </div>
									</div>
																				
								</div>
							</div>
						</div>

                <Footer/>
				</div>
			</div>
		)
	}
}

Object.assign(Index.prototype, {
	handleTabClick(tabActiveIndex) {
		this.setState({
			tabActiveIndex
		})
	}
})


export default Index;

css代码


.m-sys-wrap{
	width: 1160px;
	margin: 50px auto;
}
.m-sys-header{
	border: 1px solid #7bc7ff;
    border-bottom: 0px;
}
ol, ul {
    margin-top: 0;
    margin-bottom: 0px !important;
}

.m-sys-tab{
	display: inline-block;
    list-style-type: none;
	width: 578px;
	height: 51px;
	text-align: center;
	cursor: pointer;
	position: relative;
}
.m-sys-tab .m-box{
	position: absolute;
	top: 55px;
	width: 1160px;
	height: 400px;
	background: aqua;
}
.m-sys-tab.active{
	color: #411515;
	background-color: #f3f3f3;
}

.m-sys-tab-text{
	text-align: center;
	line-height: 51px;
	color: #7bc7ff;
    font-size: 18px;
}
.m-sys-view{
	display: none;
	color: #ffffff;
	border-right: 1px solid #7bc7ff;
    border-left: 1px solid #7bc7ff;
    border-bottom: 1px solid #7bc7ff;
}
.m-sys-view.active{display: block}
.m-sys-view .mbox{
	width: 100%;
	height: 220px;
}


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

1登峰造极

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值