zoukankan      html  css  js  c++  java
  • uniapp中小程序自定义导航栏

    1、如果需要使用自定义导航栏的时候,需要在page.json文件中做如下更改

    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
            {
                "path": "pages/list/index",
                "style": {
                    "navigationBarTitleText": "list",
                    "navigationStyle":"custom"//添加自定义配置
                }
            },
            {
                "path": "pages/index/index",
                "style": {
                    "navigationBarTitleText": "home"
                }
            }
        ],

    2、配置完成之后,自定义导航有如下写法

    1)固定的状态栏高度,此时iphonex等手机不建议使用

    <template>
        <view>
            <view class="status_bar">
                <!-- 这里是状态栏 -->
            </view>
            <view> 状态栏下的文字 </view>
        </view>
    </template>    
    <style>
        .status_bar {
            height: var(--status-bar-height);
             100%;
            background: red;
        }
    </style>

    2)自定义写法,根据对应机型自行调整,所有机型都可使用

    <template>
        <view>
            <!-- 假设我需要状态栏到文字内容部分还有50px的距离 -->
            <view class="status_bar" :style="{height:height+50+'px'}">
                <text>list</text>
            </view>
            <view> 状态栏下的文字 </view>
        </view>
    </template>  
    
    <script>
        export default{
            data(){
                return {
                    height:null,//获取的状态栏高度
                }
            },
            onLoad(){
                var _this=this;
                // 获取手机状态栏高度
                uni.getSystemInfo({
                    success:function(data){
                        // 将其赋值给this
                        _this.height=data.statusBarHeight;
                    }
                })
            },
        }
    </script>
    
    <style>
        .status_bar {
             100%;
            background: #007AFF;
            position: relative;
        }
        /* 调整状态栏标题的位置 */
        text{
            position: absolute;
            margin: auto;
            bottom:10px;
            left:0;
            right:0;
            text-align: center;
        }
    </style>
  • 相关阅读:
    java读写文本文件
    django学习<二>:连接数据库
    【MongoDB】递归获取字段更新表达式,更新复杂数据类型对象
    【MongoDB】C#中的Mongo数据类型转换
    【MongoDB】 基于C#官方驱动2.2版的封装类
    【Python】 属性的 get 与 set 方法
    【基础知识】UML基础
    【C#】 知乎用户网络爬虫
    【C#】MVC项目中搭建WebSocket服务器
    【MongoDB】 Windows 安装
  • 原文地址:https://www.cnblogs.com/Alex-Song/p/12509155.html
Copyright © 2011-2022 走看看