深圳幻海软件技术有限公司 欢迎您!

手把手教你制作手机底部导航栏,领导看完都说好

2023-03-01

手把手教你制作手机底部导航栏,领导看完都说好👍文章目录手把手教你制作手机底部导航栏,领导看完都说好👍前言一、首先看效果图二、步骤实现1.index.html2.index.css3.ionic.esm.js和ionic.js下载前言为什么产品要有TabBar?答案是为了易于使用,意味着通过Tab

手把手教你制作手机底部导航栏,领导看完都说好👍

文章目录

  • 手把手教你制作手机底部导航栏,领导看完都说好👍
  • 前言
  • 一、首先看效果图
  • 二、步骤实现
    • 1. index.html
    • 2. index.css
    • 3. ionic.esm.js 和 ionic.js 下载

前言

为什么产品要有 Tab Bar?
答案是为了易于使用,意味着通过 Tab Bar 这种简单的设计可以轻松帮助用户导航到页面。

明白了上面的问题后,接下来就要考虑如何来设计 Tab Bar,能更好的满足用户的需求和体验。

导航栏应该只包含最有用的信息,不能添加过多无用的标签使导航栏混乱。许多 App 在导航栏上添加搜索功能,因为这有助于用户更快地导航和检索内容


一、首先看效果图

二、步骤实现

1. index.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>BottomBar</title>
    <link rel="stylesheet" href="index.css" type="text/css">
</head>

<body>
    <div class="container">
        <div class="item active">
            <ion-icon name="home-outline" class="icon"></ion-icon>
            <div class="text">Home</div>
        </div>

        <div class="item">
            <ion-icon name="chatbubble-outline" class="icon"></ion-icon>
            <div class="text">Chat</div>
        </div>

        <div class="item">
            <ion-icon name="camera-outline" class="icon"></ion-icon>
            <div class="text">Camera</div>
        </div>

        <div class="item">
            <ion-icon name="person-outline" class="icon"></ion-icon>
            <div class="text">User</div>
        </div>
        <div class="indicator"></div>
    </div>

    <script>
        const list = document.querySelectorAll('.item')
        function activeLink() {
            list.forEach((item) =>
                item.classList.remove('active'))
            this.classList.add('active')
        }
        list.forEach((item) =>
            item.addEventListener('click', activeLink))
    </script>

    <script type="module" src="ionic.esm.js"></script>
    <script nomodule src="ionic.js"></script>
</body>

</html>
  • 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

2. index.css

:root {
    --color: #222327
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--color);
}

.container {
    width: 440px;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
}

.icon {
    position: absolute;
    font-size: 1.7em;
    color: var(--color);
    font-weight: bold;
    transition: 0.5s;
}

.text {
    transform: translateY(20px);
    font-size: 0.75em;
    font-weight: bold;
    transition: 0.5s;
    opacity: 0;
}

.item.active .icon {
    transform: translateY(-32px);
    z-index: 1;
}

.item.active .text {
    opacity: 1;
    transform: translateY(10px);
}

.indicator{
    position: absolute;
    width: 70px;
    height: 70px;
    background: #29fd53;
    left: 35px;
    top: -50%;
    border-radius: 50%;
    border: 6px solid var(--color);
    transition: 0.5s;
}
.indicator::before{
    content: '';
    position: absolute;
    top: 50%;
    left: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 0 0 var(--color);
}

.indicator::after{
    content: '';
    position: absolute;
    top: 50%;
    right: -22px;
    width: 20px;
    height: 20px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: 0 -10px 0 0 var(--color);
}

.item:nth-child(1).active ~ .indicator{
    transform: translateX(calc(100px * 0));
}

.item:nth-child(2).active ~ .indicator{
    transform: translateX(calc(100px * 1));
}

.item:nth-child(3).active ~ .indicator{
    transform: translateX(calc(100px * 2));
}

.item:nth-child(4).active ~ .indicator{
    transform: translateX(calc(100px * 3));
}
  • 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
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114

因为html中引入了国外链接,访问比较慢,
所以我这边提前给小伙提前准备好了

3. ionic.esm.js 和 ionic.js 下载

两个js文件下载地址:https://pan.baidu.com/s/17QHKaF5bZ-WiIr3l1k0-9g?pwd=8888

效果:

完成!
学习来源@抖音无名开发者