jQuery implements sliding tab

jQuery implements sliding tab

This article example shares the specific code of jQuery to implement sliding tabs for your reference. The specific content is as follows

First the final effect:

Demand Analysis:

1. The number of tab menus is not fixed, and the menu content is not fixed, resulting in unknown widths of individual menus and the overall width.
2. The first requirement causes the slider width to be unfixed
3. In order to make the interaction better, the slider needs to add transition animation

The need for a slider means that the HTML structure of the slider and menu must be separated, and the jQuery offset method is used to get and set the position, and all divs use relative positioning.

The TAB tab in this case can be easily expanded and reused. You only need to modify a few values ​​to use it directly.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>0908</title>
    <script src="http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js"></script>
    <style>
        /*The container is just for horizontal centering, if not needed, you can remove this layer of nesting*/
        .container{
            left: 50%;
            margin-top: 100px;
            float: left;
            cursor:pointer;
            position: relative;
        }
        .BG{
            right: 50%;
            font-size: 0;
            background-color: #f2f2f2;
            border-radius: 30px;
            position: relative;
        }
        .container div{
            font-size: 16px;
            line-height: 60px;
        }
        .list{
            float: left;
            display: inline-block;
            padding: 0 50px;
            transition: color 0.5s;
            position: relative;
            z-index: 1;
        }

        /*The order of listH and listA cannot be changed here, there is a priority, when listA is used, listH does not work*/
        .listH{
            color: #ff8300;
        }
        .listA{
            color: #fff;
        }

        /*slider*/
        #active{
            width: 100px;
            height: 60px;
            border-radius: 30px;
            background-color: #ff8300;
            box-shadow: 0 5px 16px 0 rgba(255, 144, 0, 0.58);
            position: relative;
            z-index: 0;
            transition: left 0.5s, width 1s;
        }
    </style>
    <script>
        $(document).ready(function () {

            /*Set the default active tab eq(i)*/
            var aL = $(".list:eq(1)");
            $("#active").width(aL.innerWidth());
            $("#active").offset(aL.offset());
            aL.addClass("listA");

            /*Add click events to each button*/
            $(".list").click(function() {
                $("#active").width($(this).innerWidth()); //Set width$("#active").offset($(this).offset()); //Set position$(this).addClass("listA");
                $(".list").not(this).removeClass("listA");
            });

            /*hover effect*/
            $(".list").hover(function () {
                $(this).addClass("listH")
            },function () {
                $(this).removeClass("listH")
            })

        });
    </script>
</head>
<body>
<div class="container">
    <div class="BG">
        <div class="list">one</div>
        <div class="list">twotwo</div>
        <div class="list">threethreethree</div>
        <div class="list">four</div>
        <div class="list">fivefivefive</div>
        <div id="active"></div>
    </div>
</div>
</body>
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • 6 Tab tab plugins based on JQuery
  • jQuery EasyUI API Chinese Documentation - Tabs
  • Simple implementation of jQuery tabs
  • jQuery implements a simple demonstration of tab switching effect
  • jQuery Tools Tabs
  • JQuery Tab tab effect code improved version
  • Summary of jQuery EasyUI Tab Problems
  • jQuery implements tab functionality (two methods)
  • Summary of Tab sliding tabs and image switching (multiple effects) implemented by jQuery
  • jQuery implements TAB tab switching special effects simple demonstration

<<:  How to connect to Alibaba Cloud Ubuntu 16.04 server from local Windows remote desktop

>>:  How to use the Linux basename command

Recommend

How to view and terminate running background programs in Linux

Linux task management - background running and te...

mysql5.6.8 source code installation process

Kernel: [root@opop ~]# cat /etc/centos-release Ce...

A brief discussion on JavaScript scope

Table of contents 1. Scope 1. Global scope 2. Loc...

Detailed explanation of the use of MySQL group links

Grouping and linking in MYSQL are the two most co...

Introduction to using data URI scheme to embed images in web pages

The data URI scheme allows us to include data in a...

A brief discussion on how to write beautiful conditional expressions in JS

Table of contents Multiple conditional statements...

Tutorial on deploying springboot package in linux environment using docker

Because springboot has a built-in tomcat server, ...

How to achieve the maximum number of connections in mysql

Table of contents What is the reason for the sudd...

The scroll bar position is retained when scrolling the vant list component

The scroll bar position is retained when scrollin...

Docker configuration Alibaba Cloud Container Service operation

Configuring Alibaba Cloud Docker Container Servic...

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

How to find out uncommitted transaction information in MySQL

A while ago, I wrote a blog post titled "Can...