本文实例为大家分享了微信小程序自定义左上角胶囊样式的具体代码,供大家参考,具体内容如下
1、 将app.js 中的 window 对象属性navigationstyle 改为自定义
1
2
3
|
"window" : { "navigationstyle" : "custom" }, |
改完之后的效果:
2、获取 右上角胶囊的定位信息 设置
调用 wx.getmenubuttonboundingclientrect() 函数得到右上角胶囊定位信息
所需要的 属性有 : top,height属性,用于计算自定义左上角胶囊定位的位置
拿到 右上角胶囊的 top和height 相加得到 屏幕导航栏的固定高度:
在 data函数中声明一个导航栏高度属性,和一个 胶囊具体定位的top属性:
赋值导航栏的高度 数据:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
// pages/testq/index.js page({ /** * 页面的初始数据 */ data: { navheight:0, capsuletop: 0 }, /** * 生命周期函数--监听页面加载 */ onload: function (options) { }, /** * 生命周期函数--监听页面初次渲染完成 */ onready: function () { }, /** * 生命周期函数--监听页面显示 */ onshow: function () { let dwobj = wx.getmenubuttonboundingclientrect() let navheight_ = (dwobj.top + dwobj.height) let capsuletop_ = dwobj.top this .setdata( { navheight: navheight_, capsuletop:capsuletop_ } ) }, /** * 生命周期函数--监听页面隐藏 */ onhide: function () { }, /** * 生命周期函数--监听页面卸载 */ onunload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onpulldownrefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onreachbottom: function () { }, /** * 用户点击右上角分享 */ onshareappmessage: function () { } }) |
在 wxml 中定义 导航栏:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!--pages/testq/index.wxml--> <!-- 左上角胶囊开始--> <!--left-capsule 是最上层,可以设置背景--> < view class = "left-capsule" > <!--left-capsule-nav 是用于定位左上角的位置--> < view class = "left-capsule-nav" style = "height:{{navheight}}px;" > <!--left-capsule-nav-content 是 胶囊主要内容--> < view style = "position:relative;top:{{capsuletop}}px;" class = "left-capsule-nav-content" > <!--back 胶囊 返回按钮--> < view class = "back" > <!-- 我这个图标引入的是 vant库的icon,如果不是使用vant的话 得自定义一个icon--> < van-icon name = "arrow-left" color = "white" size = "20" /> </ view > <!-- line 胶囊 中间线条--> < view class = "line" ></ view > <!-- home 胶囊 返回首页按钮--> < view class = "home" > <!-- 我这个图标引入的是 vant库的icon,如果不是使用vant的话 得自定义一个icon--> < van-icon name = "wap-home-o" color = "white" size = "20" /> </ view > </ view > </ view > <!-- 以上 可以 封装成自定义组件,在引入,这个地方是 胶囊外的内容--> < view class = "main-content" style = "top:{{navheight}}px;" > 我是测试左上角胶囊 </ view > <!-- 左上角胶囊结束--> </ view > |
wxss内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/* 导航栏css开始*/ .left-capsule{ width : 100 vh; height : 100 vh; background-color : black ; } .left-capsule .left-capsule-nav{ width : 100% ; position : fixed ; z-index : 2 ; } .left-capsule-nav .left-capsule-nav-content{ width : 85px ; text-align : center ; border-radius: 50px ; position : relative ; top : 26px ; left : 20px ; box-shadow: 0px 0px 1px 0.2px white ; background-color : #1d1919 5c; height : 30px ; } .left-capsule-nav-content view{ display : inline ; width : 35px ; position : relative ; } .left-capsule-nav-content .back{ top : 4px ; left : -5px ; } .left-capsule-nav-content .line{ top : 3px ; width : 1px ; border-left : solid #cac3c3 thin ; height : 17px ; display : inline- block ; } .left-capsule-nav-content .home{ top : 4px ; } /* 导航栏css结束*/ /* 内容*/ .main-content{ background-color : red ; position : absolute ; width : 100% ; z-index : 1 ; } |
效果图:
如果觉得红色地方太挨得进的话 top 在加大一点
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_40739917/article/details/111663638