当前位置:网站首页>Mini Program_Dynamic setting of tabBar theme skin
Mini Program_Dynamic setting of tabBar theme skin
2022-08-05 04:13:00 【Yixi Muze】
序:Need to dynamically set some background of the page、按钮状态、文字的颜色,图片、图标等等,包括tabBaricon and text color,Toggle button unified settings,This is easier to implement on the page,按理说tabBarThe settings are also simple,确实是!as long as you can calltabBarThe method of the component can switch the theme skin,The key is whether you will use the applet method.
1、tabBar自定义
配置自定义tabBar的方法可以参考官方文档,This doesn't bother me anymore,Get familiar with this first,Speaking of other;
2、Dynamically set the background、按钮状态、文字的颜色,图片、图标等等
前提工作:主题样式文件 common/theme.wxssand theme images folder/static/image/v1,/static/image/v2,如下图:

Replace styles in each desired theme xxx.wxss The header introduces the theme file
@import "./../common/theme.wxss";1)首先在 app.js Set a theme parameter in the global file
globalData: {
theme: 1, // 主题
}2)Then set parameters on other pages
data: {
theme: 1,
},
onShow(){
let that = this;
that.setData({
theme: app.globalData.theme,
})
},.wxml
<view class="limit_width theme_v{
{theme}}"> ... </view>3)Last action on the settings page
setup.wxml
<view class="limit_width theme_v{
{theme}}">
<view class="item">
<view class="theme_tle">设置主题:</view>
<view class="flex">
<view bindtap="themeTab" class="theme_tab {
{theme==1?'tab_bg_br':''}}" data-num="1">新绿(默认)</view>
<view bindtap="themeTab" class="theme_tab {
{theme==2?'tab_bg_br':''}}" data-num="2">海蓝</view>
</view>
</view>
</view>setup.js
data: {
theme: 1,
},
onLoad(options) {
this.setData({
theme: app.globalData.theme,
})
},
// 主题切换(逸曦穆泽)
themeTab(e){
let num = parseInt(e.currentTarget.dataset.num);
this.setData({theme: num});
app.globalData.theme = num; // 全局更新
this.getTabBar().watchBack(); // (逸曦穆泽)调用自定义 tabbar 的方法
// 保存到本地
wx.setStorage({
key: "themeSkin",
data: num,
})
},3、动态设置tabBar
// (逸曦穆泽)custom-tab-bar/index.js
const app = getApp();
let themeColor = ["#515151","#515151","#000"];
let themeActiveColor = ["#94AC56","#94AC56","#185F95"];
Component({
data: {
theme: 1,
selected: 1,
color: "#515151",
selectedColor: "#94AC56",
list: [{
"pagePath": "/pages/home/home",
"iconPath": "/static/image/nav_home.png",
"selectedIconPath": "/static/image/v1/nav_home.png",
"text": "首页"
},{
"pagePath": "/pages/setup/setup",
"iconPath": "/static/image/nav_setup.png",
"selectedIconPath": "/static/image/v1/nav_setup.png",
"text": "设置"
}],
},
methods: {
// (逸曦穆泽)监听并回调
watchBack() {
var that = this;
let num = app.globalData.theme;
let listUpd = [{
"pagePath": "/pages/home/home",
"iconPath": "/static/image/nav_home.png",
"selectedIconPath": "/static/image/v"+num+"/nav_home.png",
"text": "首页"
},{
"pagePath": "/pages/setup/setup",
"iconPath": "/static/image/nav_setup.png",
"selectedIconPath": "/static/image/v"+num+"/nav_setup.png",
"text": "设置"
}];
that.setData({
theme: num,
color: themeColor[num],
selectedColor: themeActiveColor[num],
list: listUpd,
})
},
switchTab(e){
var that = this;
const data = e.currentTarget.dataset;
const url = data.url;
wx.switchTab({ url });
that.setData({
selected: data.index
});
}
},
})
.wxml
<view class="tabbar theme_v{
{theme}}"> ... </view>to put it simply,其实也很简单,Just use the class-level styles from the theme style file,js 控制了 theme 参数;
难点在于 tabbar 的切换,怎么调用?肯定是调用 custom-tab-bar/index.js 下的方法,Get the global theme parameter settings into it;还有一个Topic echo的问题,可以自己去实现,这个也很简单,当然,Leave a message below if you really need it.
效果图就不贴了,This is something that involves companies and customers!
参考文章:
WeChat applet dynamics设置tab-bar_Eating hot pot tonight yay blog-CSDN博客_WeChat applet dynamicstabbar
边栏推荐
- [Software testing] unittest framework for automated testing
- Develop your own node package
- 程序开发的一些常规套路(一)
- creo怎么测量点到面的距离
- 1007 Climb Stairs (greedy | C thinking)
- The most effective seven performance testing techniques of software testing techniques
- Mathematics - Properties of Summation Symbols
- [8.1] Code Source - [The Second Largest Number Sum] [Stone Game III] [Balanced Binary Tree]
- [BSidesCF 2019] Kookie
- pyqt5 + socket 实现客户端A经socket服务器中转后主动向客户端B发送文件
猜你喜欢

Based on holding YOLOv5 custom implementation of FacePose YOLO structure interpretation, YOLO data format conversion, YOLO process modification"

creo怎么测量点到面的距离

36-Jenkins-Job Migration

Increasing leetcode - a daily topic 1403. The order of the boy sequence (greed)

Ali's local life's single-quarter revenue is 10.6 billion, Da Wenyu's revenue is 7.2 billion, and Cainiao's revenue is 12.1 billion

how to measure distance from point to face in creo

Mysql的redo log详解
![【 8.4 】 source code - [math] [calendar] [delete library 】 【 is not a simple sequence (Bonus) 】](/img/b5/716627b370e489ccf320a86540f7ba.png)
【 8.4 】 source code - [math] [calendar] [delete library 】 【 is not a simple sequence (Bonus) 】

浅析主流跨端技术方案

UE4 通过与其它Actor互动开门
随机推荐
小程序_动态设置tabBar主题皮肤
Based on holding YOLOv5 custom implementation of FacePose YOLO structure interpretation, YOLO data format conversion, YOLO process modification"
AUTOCAD——标注关联
Machine Learning Overview
特征预处理
How to solve the three major problems of bank data collection, data supplementary recording and index management?
四位数显表头设计
UE4 opens doors with overlapping events
35岁的软件测试工程师,月薪不足2W,辞职又怕找不到工作,该何去何从?
国学*周易*梅花易数 代码实现效果展示 - 梅花心易
Swing有几种常用的事件处理方式?如何监听事件?
开发属于自己的node包
Paparazzi: Surface Editing by way of Multi-View Image Processing
905. Interval selection
What is the function of industrial-grade remote wireless transmission device?
测试薪资这么高?刚毕业就20K
pyqt5 + socket 实现客户端A经socket服务器中转后主动向客户端B发送文件
多御安全浏览器新版下载 | 功能优秀性能出众
Event parse tree Drain3 usage and explanation
There are several common event handling methods in Swing?How to listen for events?