Several implementation methods of the tab bar (recommended)

Several implementation methods of the tab bar (recommended)

Tabs: Category + Description

Tag bar: Category => Let users know where they are and where they are going

1. CSS naming method:

XML/HTML CodeCopy content to clipboard
  1. < div   class = "service-tabs service-tabs1" >   
  2.   
  3.   < ul   class = "service-tabs-inner" >   
  4.     <   class = "on" > < a   href = " #nogo " > Follow </a> </li>   
  5.     < li > < a   href = "#nogo" > Recommendation </ a > </ li >     
  6.     < li > < a   href = "#nogo" > Navigation </ a > </ li >     
  7.     < li > < a   href = "#nogo" > Shopping </ a > </ li >     
  8.   </ ul >   
  9.   
  10. </ div >   
  11.   

Tab: tab

Advantages: 1. Easy to find 2. Comply with SEO standards

2. Layout:

1.<ul><li> </div>
1) float: clear float overflow:hidden;/pseudo class:after/
2) display:inline-block IE7 is not compatible: *display:inline;*zoom:1; White space: font-size:0;/same line/negative margin/letter-spacing

2.<table>

3. Template code:

1. Hover and add background color

CSS CodeCopy content to clipboard
  1. .service-tabs li a{ width : 160px ; height : 80px ; display : block ; color : #666 ; font-size : 32px ;}
  2. .service-tabs1 li a:hover{ color : #2CC185 ;}
  3. .service-tabs1 li.on a{ background-color : #2CC185 ; color : #fff ;} /*Background color*/   

2. Small triangle, obvious

CSS CodeCopy content to clipboard
  1. .service-tabs4 li{ position : relative ;}
  2. .service-tabs4 li a:hover{ color : #2CC185 ;}
  3. .service-tabs4 li.on a{ background-color : #2CC185 ; color : #fff ;}
  4. .service-tabs4 li i{ width : 11px ; height : 7px ; position : absolute ; bottom : - 6px ; left : 76px ; background : url (images/arrow.png); display : none ;}
  5. .service-tabs4 li.on i{ display : block ;}

3. Underline marking

CSS CodeCopy content to clipboard
  1. .service-tabs2 li a:hover{ color : #2CC185 ;}
  2. .service-tabs2 li.on a{ height : 78px ; border-bottom : 2px   solid   #2CC185 ; color : #2CC185 ;}

4. Script Implementation

JavaScript CodeCopy content to clipboard
  1. $( function (){ $( ".service-tabs ul li" ).click( function () { $( this ).addClass( "on" ).siblings().removeClass( "on" ); }); })
  2.   

Simple + Practical

The above several implementation methods of the tab bar (recommended) are all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  Detailed explanation of mkdir command in Linux learning

>>:  How to remove the blue box that appears when the image is used as a hyperlink

Recommend

A brief analysis of the function calling process under the ARM architecture

Table of contents 1. Background knowledge 1. Intr...

How to display JSON data in HTML

background: Sometimes we need to display json dat...

mysql update case update field value is not fixed operation

When processing batch updates of certain data, if...

How to view the type of mounted file system in Linux

Preface As you know, Linux supports many file sys...

How to connect idea to docker to achieve one-click deployment

1. Modify the docker configuration file and open ...

Detailed tutorial on installing and configuring MySQL 5.7.20 under Centos7

1. Download the MySQL 5.7 installation package fr...

Build a file management system step by step with nginx+FastDFS

Table of contents 1. Introduction to FastDFS 1. I...

MySQL limit performance analysis and optimization

1. Conclusion Syntax: limit offset, rows Conclusi...

React Router V6 Updates

Table of contents ReactRouterV6 Changes 1. <Sw...

Flash embedded in web pages and IE, FF, Maxthon compatibility issues

After going through a lot of hardships, I searched...

Detailed explanation of several methods of JS array dimensionality reduction

Dimensionality reduction of two-dimensional array...

Summary of some situations when Docker container disk is full

Preface This article describes two situations I h...

Solution to "Specialized key was too long" in MySQL

Table of contents Solution 1 Solution 2 When crea...

A comparison between the href attribute and onclick event of the a tag

First of all, let's talk about the execution ...

Solution to Nginx 500 Internal Server Error

Today, when I was using Nginx, a 500 error occurr...