Html
    Css
    Js

    
                        
* {
	margin:0;
	padding:0;
	list-style:none;
	text-decoration:none;
	box-sizing:border-box;
}
.tab {
	width:80%;
	margin:30px auto;
	background-color:white;
	box-shadow:0 0 10px 5px #cccccc;
}
.tab_list {
	height:50px;
}
.tab_list li {
	box-sizing:border-box;
	float:left;
	width:190px;
	height:50px;
	line-height:50px;
	color:#af0102;
	font-size:18px;
	font-family:Microsoft YaHei,Hiragino Sans GB,"sans-serif";
	text-align:center;
	cursor:pointer;
}
.tab_list .current {
	border-top:4px solid #af0102;
	line-height:46px;
	color:#9b0000;
}
.item {
	padding:10px 20px;
	display:none;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

tab栏切换

更新时间:2020-04-09 10:38:09

本tab栏切换使用原生js,使用简单,懂得些html,css,js的都可上手,使用了排他思想,点击后清空所有tab栏样式,选中的设置current样式,下边对应的item,先清空所有全部显示,在设置为display:block;控制显示当前的

0