选项卡五花八门,今天又要用到选项卡,首选swiper!
一、HTML布局
根据swiper官网的要求来class命名滑块。
<div class="box">
<ul class="swiperTab">
<li> <span>Div+CSS</span> </li>
<li> <span>JavaScript+JQuery</span> </li>
<li> <span>AngularJS+Vue+NodeJs</span> </li>
</ul>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">千寻Div+CSS</div>
<div class="swiper-slide">阿飞JavaScript+JQuery</div>
<div class="swiper-slide">无虑AngularJS+Vue+NodeJs</div>
</div>
</div>
</div>
二、CSS样式
随便写写,根据使用场景调整。(PS:推荐一个在线美化工具)
*{margin:0;padding:0}
li{list-style:none}
.box{margin:50px auto;width:800px}
.swiperTab{display:flex;width:100%;flex-direction:row;justify-content:center;align-items:center}
.swiperTab li{display:flex;height:48px;border-left:1px solid #dfdfdf;background-color:#ddf8ff;cursor:pointer;flex:1;flex-direction:row;justify-content:center;align-items:center}
.swiperTab li:first-child{border-left:1px solid transparent}
.swiperTab li.active{background-color:#f60;color:#fff}
.swiperTab li:nth-child(1).active{background-color:#9acd32}
.swiperTab li:nth-child(2).active{background-color:green}
.swiperTab li:nth-child(3).active{background-color:pink}
.swiper-slide{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:20px}
.swiper-slide:nth-child(1){height:200px;background-color:#9acd32}
.swiper-slide:nth-child(2){height:300px;background-color:green}
.swiper-slide:nth-child(3){height:100px;background-color:pink}
三、Js封装
自己封装的选项卡函数swiperTab.js
/* swiper 选项卡函数 参数说明
* obj 必选,导航列表
* swiperObj: 必选,HTML元素或者string类型,Swiper容器的css选择器
* className: 必选,当前样式的类名
* effect:可选,切换效果,默认为"slide",可设置为"fade,cube,coverflow,flip"。
* 其他参数参阅官网 http://www.swiper.com.cn
* */
function tabs(obj,swiperObj,className) {
var tabSwiper = new Swiper(swiperObj, {
effect : 'flip',//切换效果
speed : 500, //滑动速度,单位ms
autoHeight: true, // 高度随内容变化
onSlideChangeStart : function() {
$(obj+"."+className).removeClass(className); /*有当前类名的删除类名,给下一个添加当前类名*/
$(obj).eq(tabSwiper.activeIndex).addClass(className);/*activeIndex是过渡后的slide索引*/
}
});
// 模拟点击事件,如果是移入事件,将mousedown 改为 mouseenter
$(obj).on('touchstart mousedown', function(e) {
e.preventDefault();/*清除默认事件*/
$(obj+"."+className).removeClass(className);
$(this).addClass(className); /*点击当前导航 改变当前样式*/
tabSwiper.slideTo($(this).index());/*滑动到对应的滑块*/
});
$(obj).click(function(e) {
e.preventDefault();/*清除默认点击事件*/
});
}
四、Js调用
首先引入相关js
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/Swiper/3.4.2/js/swiper.jquery.min.js"></script>
<script src="js/swiperTab.js"></script>
<script>
/*swiper选项卡切换*/
$(function () {
//swiperTab 是你导航的className,active是你当前状态的className
$('.swiperTab > li').eq(0).addClass('active');
tabs('.swiperTab > li','.swiper-container','active');
});
</script>
前端小白刚学JS。不足之处,不吝言赐教。谢谢!
五、拓展
经常遇到从另一个页面直接跳转到选项卡对应的内容
例如:page.html 中点击a标签直接跳转到对应展示页面。
我们在href中直接添加锚点,锚点中包含一个数字即对应选项卡的索引值0、1、2
<a href="SwiperPC.html#slider0" target="_blank">展示 Div+CSS</a>
<a href="SwiperPC.html#slider1" target="_blank">展示 JavaScript+JQuery</a>
<a href="SwiperPC.html#slider2" target="_blank">展示 ngularJS+Vue+NodeJs</a>
对上面的案例稍作修改:
- 在swiperTab.js中添加设定初始化时slide的索引 initialSlide: index
- 传入参数 index
-
在回调函数中 判断tabSwiper是否存在,否则当哈希值不为0的时候会报错 。
function tabs(obj,swiperObj,className,index) { var tabSwiper = new Swiper(swiperObj, { initialSlide: index, // 设定初始化时slide的索引 effect : 'flip', speed : 500, autoHeight: true, onSlideChangeStart : function() { if(tabSwiper){ /*判断tabSwiper是否存在,否则当哈希值不为0的时候会报错 */ $(obj+"."+className).removeClass(className); $(obj).eq(tabSwiper.activeIndex).addClass(className); } } }); $(obj).on('touchstart mousedown', function(e) { e.preventDefault(); $(obj+"."+className).removeClass(className); $(this).addClass(className); tabSwiper.slideTo($(this).index()); }); $(obj).click(function(e) { e.preventDefault(); }); }
-
在调用的时候 根据哈希值(因为我们在a标签的href中添加了锚点)来改变索引值index从而达到改变 swiper初始化时slide的索引的目的
<script> $(function () { var $tabList = $('.swiperTab > li'), lens= $tabList.length; /*获取选项卡长度*/ var index = 0; /*设置初始索引为0 即 没有哈希值的时候显示第一个选项卡内容*/ var hash = window.location.hash; /* * * 获取哈希值(你也可以获取整个url剪切出你要的字段)。根据哈希值中设置的数字显示对应的选项卡内容; * 例如:SwiperPC.html#slide1对应显示第索引值为1的选项卡内容即第二个选项卡
if(hash){
value = hash.match(/\d/g).join('');
index = Number(value);/*字符串转换为数字*/
index = parseInt(index)%lens;
}
$tabList.eq(index).addClass('active');
tabs('.swiperTab > li','.swiper-container','active',index);
});
</script>
```
完整案例
延伸阅读我的另一篇用本地存储 方式 从一个页面跳转到用swiper写的全屏滚动页面的指定位置
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。