CSS+JS Enable tab TAB switching

Source: Internet
Author: User

It's easier to switch tabs, but let's look at the results I've achieved:


I have mainly achieved:

1, the tab between the mutual switch;

2. Display the selected tab


Here's a look at the implementation code:

Css:

html,body,div{    font-size:12px;    font-family: "Arial";}. tab-ui{    width:400px;    height:300px;    Position:relative;}. tab-title{    border-top-right-radius:8px;    Float:left;    Border:solid 1px #7EABCD;    Background: #c5dbec;    padding:5px;    Font-weight:bold;    Color: #ffffff;    margin:1px;}. tab-title:hover{    Cursor:pointer;}. tab-title-active{    background: #7EABCD;}. content{    width:100%;    height:100%;    Position:absolute;    top:27px;    left:1px;}. tab-content{    padding:10px;    Border:solid 1px #c5dbec;}

Js:

Function Show (total,active) {for    (var i=1;i<total+1;i++) {        $ ("#tab" +i). Removeclass ("tab-title-active");        $ ("#content" +i). Hide ();    }    $ ("#tab" +active). AddClass ("tab-title-active");    $ ("#content" +active). Show ();}

Html:

<! DOCTYPE html>
Implementation ideas:

The loop hides all the content labels, clears the active style of the tab title bar, sets the contents of the selected label to display, and adds the active style to the tab title bar.


If you have any questions, please contact:

qq:1004740957

Email:[email protected]

CSS+JS Enable tab TAB switching

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.