摘要:根據(jù)哈希值中設(shè)置的數(shù)字顯示對應(yīng)的選項卡內(nèi)容例如對應(yīng)顯示第索引值為的選項卡內(nèi)容即第二個選項卡字符串轉(zhuǎn)換為數(shù)字完整案例延伸閱讀我的另一篇用本地存儲方式從一個頁面跳轉(zhuǎn)到用寫的全屏滾動頁面的指定位置
選項卡五花八門,今天又要用到選項卡,首選swiper!
一、HTML布局根據(jù)swiper官網(wǎng)的要求來class命名滑塊。
二、CSS樣式
- Div+CSS
- JavaScript+JQuery
- AngularJS+Vue+NodeJs
隨便寫寫,根據(jù)使用場景調(diào)整。(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封裝
自己封裝的選項卡函數(shù)swiperTab.js
/* swiper 選項卡函數(shù) 參數(shù)說明 * obj 必選,導(dǎo)航列表 * swiperObj: 必選,HTML元素或者string類型,Swiper容器的css選擇器 * className: 必選,當(dāng)前樣式的類名 * effect:可選,切換效果,默認(rèn)為"slide",可設(shè)置為"fade,cube,coverflow,flip"。 * 其他參數(shù)參閱官網(wǎng) http://www.swiper.com.cn * */ function tabs(obj,swiperObj,className) { var tabSwiper = new Swiper(swiperObj, { effect : "flip",//切換效果 speed : 500, //滑動速度,單位ms autoHeight: true, // 高度隨內(nèi)容變化 onSlideChangeStart : function() { $(obj+"."+className).removeClass(className); /*有當(dāng)前類名的刪除類名,給下一個添加當(dāng)前類名*/ $(obj).eq(tabSwiper.activeIndex).addClass(className);/*activeIndex是過渡后的slide索引*/ } }); // 模擬點擊事件,如果是移入事件,將mousedown 改為 mouseenter $(obj).on("touchstart mousedown", function(e) { e.preventDefault();/*清除默認(rèn)事件*/ $(obj+"."+className).removeClass(className); $(this).addClass(className); /*點擊當(dāng)前導(dǎo)航 改變當(dāng)前樣式*/ tabSwiper.slideTo($(this).index());/*滑動到對應(yīng)的滑塊*/ }); $(obj).click(function(e) { e.preventDefault();/*清除默認(rèn)點擊事件*/ }); }四、Js調(diào)用
首先引入相關(guān)js
前端小白剛學(xué)JS。不足之處,不吝言賜教。謝謝!
例如:page.html 中點擊a標(biāo)簽直接跳轉(zhuǎn)到對應(yīng)展示頁面。
我們在href中直接添加錨點,錨點中包含一個數(shù)字即對應(yīng)選項卡的索引值0、1、2
展示 Div+CSS 展示 JavaScript+JQuery 展示 ngularJS+Vue+NodeJs
對上面的案例稍作修改:
在swiperTab.js中添加設(shè)定初始化時slide的索引 initialSlide: index
傳入?yún)?shù) index
在回調(diào)函數(shù)中 判斷tabSwiper是否存在,否則當(dāng)哈希值不為0的時候會報錯 。
function tabs(obj,swiperObj,className,index) { var tabSwiper = new Swiper(swiperObj, { initialSlide: index, // 設(shè)定初始化時slide的索引 effect : "flip", speed : 500, autoHeight: true, onSlideChangeStart : function() { if(tabSwiper){ /*判斷tabSwiper是否存在,否則當(dāng)哈希值不為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(); }); }
在調(diào)用的時候 根據(jù)哈希值(因為我們在a標(biāo)簽的href中添加了錨點)來改變索引值index從而達到改變 swiper初始化時slide的索引的目的
```
完整案例
延伸閱讀我的另一篇用本地存儲 方式 從一個頁面跳轉(zhuǎn)到用swiper寫的全屏滾動頁面的指定位置
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/51130.html
摘要:根據(jù)哈希值中設(shè)置的數(shù)字顯示對應(yīng)的選項卡內(nèi)容例如對應(yīng)顯示第索引值為的選項卡內(nèi)容即第二個選項卡字符串轉(zhuǎn)換為數(shù)字完整案例延伸閱讀我的另一篇用本地存儲方式從一個頁面跳轉(zhuǎn)到用寫的全屏滾動頁面的指定位置 選項卡五花八門,今天又要用到選項卡,首選swiper! 一、HTML布局 根據(jù)swiper官網(wǎng)的要求來class命名滑塊。 Div+CSS Jav...
摘要:根據(jù)哈希值中設(shè)置的數(shù)字顯示對應(yīng)的選項卡內(nèi)容例如對應(yīng)顯示第索引值為的選項卡內(nèi)容即第二個選項卡字符串轉(zhuǎn)換為數(shù)字完整案例延伸閱讀我的另一篇用本地存儲方式從一個頁面跳轉(zhuǎn)到用寫的全屏滾動頁面的指定位置 選項卡五花八門,今天又要用到選項卡,首選swiper! 一、HTML布局 根據(jù)swiper官網(wǎng)的要求來class命名滑塊。 Div+CSS Jav...
摘要:利用這篇教程存儲一些常用的微信小程序開發(fā)技巧,方便查找。但是第一,微信小程序是國內(nèi)的,有中文文檔,雖然它的文檔說明有點坑,但好歹有文檔,閱讀理解對小伙伴們來說不是問題。 Create by jsliang on 2018-9-17 17:58:56 Recently revised in 2018-11-19 08:19:13 ?Hello 小伙伴們,如果覺得本文還不錯,記得給個...
摘要:利用這篇教程存儲一些常用的微信小程序開發(fā)技巧,方便查找。但是第一,微信小程序是國內(nèi)的,有中文文檔,雖然它的文檔說明有點坑,但好歹有文檔,閱讀理解對小伙伴們來說不是問題。 Create by jsliang on 2018-9-17 17:58:56 Recently revised in 2018-11-19 08:19:13 ?Hello 小伙伴們,如果覺得本文還不錯,記得給個...
閱讀 740·2021-11-17 09:33
閱讀 3771·2021-09-01 10:46
閱讀 1762·2019-08-30 11:02
閱讀 3290·2019-08-29 15:05
閱讀 1407·2019-08-26 11:39
閱讀 2283·2019-08-23 17:04
閱讀 1982·2019-08-23 15:43
閱讀 1379·2019-08-23 14:12