CSS implements the bottom tapbar function

CSS implements the bottom tapbar function

Now many mobile phones have the function of switching the tab bar at the bottom. I happened to have a similar function recently. Without further ado, let's go straight to the code.

First look at the effect picture

Tab bar switching

CSS Styles

*{
           margin: 0;
           padding: 0;
           text-decoration: none;
           list-style: none;

       }
       .foot {
           width: 100%;
           height: 68px;
           background: #FFFFFF;
           position: fixed;
           bottom: 0;
           display: flex;
           justify-content: space-around;
           z-index: 999;
           /*line-height: 20px;*/
       }

       .foot li {
           height: 100%;
       }

       .foot li a {
           display: block;
           width: 100%;
           height: 100%;
           /* color: #979797;*/
       }

       .foot li a img {
           /*display: block;*/
           width: 26px;
           height: 26px;
           margin-top: 10px;
       }

       .foot li ap {
           font-size: 12px;
           width: 100%;
           text-align: center;
           /* color: #979797;*/
           margin-top: 7px;
       }
       .botm-title{
           color: #979797;
       }

       .actives {
           color: #5C91FA;
       }
       .xz-img{
           text-align: center;
       }

Page Code

<%--Bottom tapbar--%>
   <ul class="foot">
       <li class="Imgbox" img="/images/tuiJianCus/index-wxz-icon.png" data-img="/images/tuiJianCus/index-xz-icon.png">
           <a href="/views/tuiJianCus/index.jsp">
               <div class="xz-img">
                   <img src="/images/tuiJianCus/index-wxz-icon.png" />
               </div>

               <p class="botm-title">Home page recommendation</p>
           </a>
       </li>
       <li class="Imgbox" img="/images/tuiJianCus/tuijiang-wxz-icon.png" data-img="/images/tuiJianCus/tuijiang-xz-icon.png">
           <a href="/views/tuiJianCus/tuijian_speed.jsp">
               <div class="xz-img">
                   <img src="/images/tuiJianCus/tuijiang-xz-icon.png" />
               </div>

               <p class="botm-title actives ">My recommendations</p>
           </a>
       </li>
       <li class="Imgbox" img="/images/tuiJianCus/my-wxz-icon.png" data-img="/images/tuiJianCus/my-xz-icon.png">
           <a href="/views/tuiJianCus/usercenter.jsp">
               <div class="xz-img">
                   <img src="/images/tuiJianCus/my-wxz-icon.png" />
               </div>

               <p class="botm-title ">My benefits</p>
           </a>
       </li>
   </ul>

This is the end of this article about how to implement the bottom tapbar with CSS. For more relevant CSS bottom tapbar content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Getting Started Tutorial for Newbies ⑤: Website Registration is Very Easy, Quick Registration Tips

>>:  MySQL extracts Json internal fields and dumps them as numbers

Recommend

Let you understand the working principle of JavaScript

Table of contents Browser kernel JavaScript Engin...

How to limit the number of records in a table in MySQL

Table of contents 1. Trigger Solution 2. Partitio...

mysql 5.7.19 latest binary installation

First download the zip archive version from the o...

Vue implements adding watermark to uploaded pictures

This article shares the specific implementation c...

Detailed discussion on the issue of mysqldump data export

1. An error (1064) is reported when using mysqldu...

How to run commands on a remote Linux system via SSH

Sometimes we may need to run some commands on a r...

How to mount a disk in Linux

When using a virtual machine, you may find that t...

How to use CSS to write different styles according to sub-elements

The effect we need to achieve: What is needed The...

Solution for Vue routing this.route.push jump page not refreshing

Vue routing this.route.push jump page does not re...

Detailed explanation of common usage of pseudo-classes before and after in CSS3

The before/after pseudo-class is equivalent to in...

How to reset the root password in mysql8.0.12

After installing the database, if you accidentall...

MySQL date and time addition and subtraction sample code

Table of contents 1.MySQL adds or subtracts a tim...

Three ways to implement virtual hosts under Linux7

1. Same IP address, different port numbers Virtua...

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...