微信小程序——代码片段汇集
导航栏
作者:beatzcs
链接:https://www.jianshu.com/p/c681007a6287
这个导航虽然已经很完善了,不过还是要根据自己的来进行修改的
tabs.wxml
<!-- 顶部TabList -->
<view wx:if="{{tab_config.fixed}}" class="tab-bar">
<view wx:for="{{tab_config.tabs}}" wx:key="unique" data-index="{{index}}" bindtap="handlerTabTap" class="tab {{tab_config.active_tab==index?'tab-active':''}} " style="width: {{tab_config.item_width}}px;">
<text>{{item}}</text>
</view>
<view style="width: {{tab_config.item_width-tab_config.underline.margins}}px; left: {{tab_config.underline.offset}}px;" class="under-line withAnimate"></view>
</view>
<scroll-view wx:else class="tab-bar" scroll-x="true" bindscroll="onScroll" style="width: 100%;" scroll-left="{{tab_config.tab_left}}">
<view wx:for="{{tab_config.tabs}}" wx:key="unique" data-index="{{index}}" bindtap="handlerTabTap" class="tab {{tab_config.active_tab==index?'tab-active':''}} " style="width: {{tab_config.item_width}}px;">
<text>{{item}}</text>
</view>
<view style="width: {{tab_config.item_width-tab_config.underline.margins}}px; left: {{tab_config.underline.offset+10}}px;" class="under-line withAnimate"></view>
</scroll-view> <!-- 滑动页面 -->
<swiper class='swiper' bindchange='bindChange' current='{{swipe_config.current}}' indicator-dots='{{swipe_config.indicator_dots}}' autoplay='{{swipe_config.autoplay}}'>
<block wx:for="{{orderList}}" wx:for-item='orders'>
<swiper-item class='swiper-item'>
<!-- 页面内容 -->
</swiper-item>
</block>
</swiper>
tabs.wxss
/* 顶部TabList */ .withAnimate {
transition: all 200ms ease-out;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective:;
-moz-perspective:;
-ms-perspective:;
perspective:;
} .tab-bar {
position: relative;
white-space: nowrap;
display: block;
font-size: 11pt;
color: #666;
height: 40px;
background: #fff;
} .tab-bar .tab {
display: inline-block;
line-height: 40px;
text-align: center;
} .tab-bar .tab-active {
color: #e64340;
} .tab-bar .under-line {
position: absolute;
height: 2px;
top: 38px;
background-color: #e64340;
}
.
tabs.js
data: {
tabTouch: false, //tab点击会触发swiper的滚动,会导致调用两次相同的服务,使用此tag来阻止swiper调用服务,只是切换page
window_width: wx.getSystemInfoSync().windowWidth || 375,// 单位是px
tab_config: {
tabs: ['全部', '待付款', '待发货', '待收货', '已完成', '已退款', '已取消'],// tabs
fixed: false, // tabbar是否固定宽度
active_tab: 0, //当前激活的tab
item_width: 70,// 单位是px
tab_left: 0, // 如果tabbar不是固定宽度,则目前左移的位置
underline: {
offset: 0, //下划线的位移
margins: 20, //下划线的左右间距
}
},
swipe_config: {
indicator_dots: false, // 不显示小圆点
autoplay: false,// 自动切换
interval: 2000,// 自动切换频率
duration: 500, // 切换时间
current: 0 // 当前激活的panel
}
//...
}, /**
* 更换页面到指定page ,从0开始
*/
updateSelectedPage(page) {
let that = this;
//console.log("========== updateSelectedPage" + page);
let { window_width, tab_config, swipe_config } = this.data;
let underline_offset = tab_config.item_width * page; tab_config.active_tab = page;
swipe_config.current = page;
tab_config.underline.offset = underline_offset;
if (!tab_config.fixed) {
// 如果tab不是固定的 就要 检测tab是否被遮挡
let show_item_num = Math.round(window_width / tab_config.item_width); // 一个界面完整显示的tab item个数
let min_left_item = tab_config.item_width * (page - show_item_num + 1); // 最小scroll-left
let max_left_item = tab_config.item_width * page; // 最大scroll-left
if (tab_config.tab_left < min_left_item || tab_config.tab_left > max_left_item) {
// 如果被遮挡,则要移到当前元素居中位置
tab_config.tab_left = max_left_item - (window_width - tab_config.item_width) / 2;
}
}
that.setData({
"tab_config": tab_config,
"swipe_config": swipe_config
});
//调用页面的接口更新页面
that.loadOrderList(page);
}, /**
* tab的点击事件
*/
handlerTabTap(e) {
this.setData({
tabTouch: true
})
this.updateSelectedPage(e.currentTarget.dataset.index);
}, /**
* swiper的滑动事件
*/
bindChange(e) {
if (!this.data.tabTouch) {
// console.log("===== swiperChange " + e.detail.current);
this.updateSelectedPage(e.detail.current);
}
}
微信小程序——代码片段汇集的更多相关文章
- 微信小程序代码片段
微信小程序代码片段是一种可分享的小项目,可用于分享小程序和小游戏的开发经验.展示组件和 API 的使用.复现开发问题等等.分享代码片段会得到一个链接,所有拥有此分享链接的人可以在工具中导入此代码片段. ...
- [RN] React Native代码转换成微信小程序代码的转换引擎工具
React Native代码转换成微信小程序代码的转换引擎工具 https://github.com/areslabs/alita
- 微信小程序代码构成
一.小程序代码 app.json 是当前小程序的全局配置,包括了小程序的所有页面路径.界面表现.网络超时时间.底部tab等. { "pages":[ "pages/ind ...
- 微信小程序代码大全 - 小程序开发福利
小程序QQ交流群:131894955 小程序开发文档(Wepy) 小程序商城源码下载(weixin-app-shop) 小程序官网源码下载(weixin-app-cms) 微信管家平台JAVA版开源下 ...
- webstorm开发微信小程序代码提醒(webstorm开发工具)
使用了微信提供的开发工具是真心难用,卡顿厉害.中英文切写注释换相当不爽.还没办法多开窗口,相信大家也遇到过这种现象. 下边我们介绍下webstorm来开发微信小程序的一些配置: File---sett ...
- 微信小程序代码开源啦
想学习如何使用mpvue开发微信小程序吗? 想知道微信消息推送如何实现吗? 想知道如何用springboot开发小程序后台吗? 看这里就全都有了.耗时一个月打造的微信小程序:PSN折扣助手前后端所有源 ...
- 史上最全的微信小程序代码大全
--------------------- 本文来自 fenxiangjun 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/fenxiangjun/article/d ...
- 如何减小微信小程序代码包大小
原作于:https://captnotes.com/how_to_reduce_package_size_of_weapp 这两天被小程序代码包大小暴涨的问题困扰了挺久.简单说说怎么回事吧,就是之前好 ...
- 微信小程序--代码构成---JSON 配置
在上一章中,我们通过开发者工具快速创建了一个 QuickStart 项目.你可以留意到这个项目里边生成了不同类型的文件: .json 后缀的 JSON 配置文件 .wxml 后缀的 WXML 模板文件 ...
随机推荐
- Item 22: 当使用Pimpl机制时,在实现文件中给出特殊成员函数的实现
本文翻译自<effective modern C++>,由于水平有限,故无法保证翻译完全正确,欢迎指出错误.谢谢! 博客已经迁移到这里啦 如果你曾经同过久的编译时间斗争过,那么你肯定对Pi ...
- Hadoop重新格式化HDFS的方法
1.查看hdfs-site.xml: <property> <name>dfs.name.dir</name> <value>/home/hadoop/ ...
- H5 15-交集选择器
15-交集选择器 我是段落 我是段落 我是段落 我是段落 我是段落 <!DOCTYPE html> <html lang="en"> <head> ...
- Codeforces Round #486 (Div. 3)-C. Equal Sums
C. Equal Sums time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...
- 使用matplotlib画饼图
import matplotlib.pyplot as pltx = [4, 9, 21, 55, 30, 18]labels = ['math', 'history', 'chemistry', ' ...
- p151开映射札记
1. 如何理解这句话? 2.连续有什么用? 3.为什么区间包含,经过算子T还是包含? 谢谢 谢谢学长 我懂了 1.2. 3有点儿模糊 1.连续等价于开集原像是开集,而可逆算子的逆的原像就是的 ...
- Docker Compose vs. Dockerfile
Docker Compose vs. Dockerfile - which is better? - Stack Overflowhttps://stackoverflow.com/questions ...
- [转帖]Linux分页机制之概述--Linux内存管理(六)
Linux分页机制之概述--Linux内存管理(六) 2016年09月01日 19:46:08 JeanCheng 阅读数:5491 标签: linuxkernel内存管理分页架构更多 个人分类: ┈ ...
- js发布订阅模式实现
//可以用于无相关页面或组件的事件.数据传递,减少在onShow中的业务,降低代码耦合 let events = {} /**订阅**/ function on(name, self, callbac ...
- 对C#调用C++的dll的一点思考
最近在对接C++程序的时候碰到了一些问题,然后花了一段时间才解决,今天就这些小问题来做一个总结,很多时候由于对另外一种开发语言的不熟悉,会在使用的过程中遇到很多的问题,这些问题看似简单但是背后却有很多 ...