在实现Angularjs实现mvvm式的选项卡之前,先搬出我们常用的jquery实现。
1、jquery实现简单粗暴的选项卡效果
在这里只给出js核心部分,html和css不做赘述。
以上代码,简单粗暴的实现了选项卡效果,用点击事件获得elem.index()
,把索引和容器串起来控制显示隐藏。
2、angularjs实现一个简单选项卡效果
Html部分
- Home
- Work
- Blog
- About
- Contact
在实现Angularjs实现mvvm式的选项卡之前,先搬出我们常用的jquery实现。
在这里只给出js核心部分,html和css不做赘述。
以上代码,简单粗暴的实现了选项卡效果,用点击事件获得elem.index()
,把索引和容器串起来控制显示隐藏。
Less
语法,童鞋们可以自定义css实现个性效果)
a {
color: #2CC185;
text-decoration: none;
outline: none;
&:hover {
color: #74777b;
}
}
.tabs {
position: relative;
width: 100%;
margin: 30px auto 0 auto;
nav {
ul {
position: relative;
display: flex;
max-width: 1200px;
margin: 0 auto;
list-style: none;
flex-flow: row wrap;
justify-content: center;
li {
flex: 1;
&.current a {
color: #74777b;
}
}
}
}
a {
display: block;
position: relative;
overflow : hidden;
line-height: 2.5;
span {
vertical-align: middle;
font-size: 1.5em;
}
}
}
.content {
position: relative;
section {
/ display: none; /
margin: 0 auto;
max-width: 1200px;
&.content-current {
/ display: block; /
}
p {
color: rgba(40,44,42,0.4);
margin: 0;
padding: 1.75em 0;
font-weight: 900;
font-size: 5em;
line-height: 1;
}
}
}
.tabs-style {
nav {
/ background: rgba(255,255,0.4); /
ul li {
a {
overflow: visible;
border-bottom: 1px solid rgba(0,0.2);
-webkit-transition: color 0.2s;
transition: color 0.2s;
}
}
ul li.current a{
&:after,&:before {
content: '';
position: absolute;
top: 100%;
left: 50%;
width: 0;
height: 0;
border: solid transparent;
}
&:after {
margin-left: -10px;
border-width: 10px;
border-top-color: #e7ecea;
}
&:before {
margin-left: -11px;
border-width: 11px;
border-top-color: rgba(0,0.2);
}
}
}
}
this.isSet = function(tab) {
return this.current == tab;
};
});
通过以上代码,我们可以发现实现的核心是angularjs内置的ng-class
和ng-click
,ng-show
指令。
通俗来讲:controller里定义了current 这条数据默认值为1,ng-click
给点击事件自定义函数,改变current
数据,ng-class
通过获得current
的值绑定条件,给当前选中的索引添加current
样式,容器同样获得controller
里的current
数据通过ng-show
控制显示隐藏。