吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3248|回复: 10
收起左侧

[其他转载] 纯Css Tab选项卡

[复制链接]
GeekHacker 发表于 2018-10-12 13:35
本帖最后由 GeekHacker 于 2018-10-12 16:06 编辑

很多人对于js比较无奈,在网上下载的效果,调试过程中总会遇到一些问题,所以很多人渴望有css能实现简单的tab选项卡的效果,下面分享给大家的就是纯css,比较实用,希望能帮到大家。
[HTML] 纯文本查看 复制代码
<DOCTYPE html>
<html>
<head>
    <title>Tab选项卡</title>
    <meta charset="utf-8">
    <style type="text/css">
        body{
            font-size: 0;
        }
        .box{
            text-align: center;
        }
        .box .tab{
            display: inline-block;
            width: 120px;
            height: 44px;
            padding: 7px;
            border: 1px solid #ccc;
            border-bottom: 0px;
            box-sizing:border-box;
            background: #fff;
            font-size: 16px;
            line-height: 26px;
            color: #555;
            transition: all 0.5s linear;
        }
        .box .tab:hover{
            background: #eee;
            transition: all 0.5s linear;
        }
        .con{
            width: 800px;
            height: 400px;
            margin:0 auto;
        }
        .con .list{
            width: 800px;
            height: 400px;
            border: 1px solid #ccc;
            padding: 10px;
            position: absolute;/*堆一起*/
            z-index: 1;
            box-sizing:border-box;
        }
        .list img{
            height: 300px;
            width: auto;
            margin: 40px auto;
        }
        .box>.tab:nth-child(1):hover~.con>.list:nth-child(1),
        .box>.tab:nth-child(2):hover~.con>.list:nth-child(2),
        .box>.tab:nth-child(3):hover~.con>.list:nth-child(3),
        .box>.tab:nth-child(4):hover~.con>.list:nth-child(4),
        .list:hover{
            z-index: 3;
        }
    </style>
</head>
<body>
    <div class="box">
        <a class="tab">哇咔咔</a>
        <a class="tab">太棒了</a>
        <a class="tab">纳尼</a>
        <a class="tab">不要听</a>
        <div class="con">
            <div class="list"><img src="img/a.jpg"></div>
            <div class="list"><img src="img/c.jpg"></div>
            <div class="list"><img src="img/f.jpg"></div>
            <div class="list"><img src="img/h.jpg"></div>
        </div>
    </div>
</body>
</html>

免费评分

参与人数 1吾爱币 +1 收起 理由
无影 + 1 可能我太菜 看不懂你代码 请问一下 你上来就把文字大小写成0 什么意思font-.

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

wangqiustc 发表于 2018-10-12 13:52
我点了小尾巴进去了,不错的网站
q314956820 发表于 2018-10-12 14:06
q314956820 发表于 2018-10-12 14:19
极地企鹅 发表于 2018-10-12 15:34
代码格式有问题
无影 发表于 2018-10-12 22:21
感觉不需要tab和list
直接.box a和.box .con div不就行了
为什么要写那么多class?
 楼主| GeekHacker 发表于 2018-10-13 23:04
无影 发表于 2018-10-12 22:21
感觉不需要tab和list
直接.box a和.box .con div不就行了
为什么要写那么多class?

好的,学到了,我试试
knian 发表于 2018-10-20 18:28
不错不错,感谢分享
jixian34 发表于 2018-11-14 17:12
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>taps</title>
    <link rel="stylesheet" type="text/css" media="screen" href="css/taps.css" />
</head>
<body>
    <div class="taps">
        <form>
            <input type="radio" name="tap" id="tap1">
            <label for="tap1">tap1</label>
            <p>我是tap1</p>
            <input type="radio" name="tap" id="tap2">
            <label for="tap2">tap2</label>
            <p>我是tap2</p>
            <input type="radio" name="tap" id="tap3">
            <label for="tap3">tap3</label>
            <p>我是tap3</p>
        </form>
    </div>
            
    </div>
</body>
</html>

.taps{
    width: 600px;
    height: 300px;
    border: 1px solid black;
    margin: 100px auto;
    font-size: 0px;
    position: relative;
}
.taps form input{
    display: none;
}
.taps form input:checked+label{
    border-bottom: none;
}
.taps form input:checked+label+p{
    display: block;
}
.taps form label{
    float: left;
    font-size: 20px;
    box-sizing: border-box;
    width: 200px;
    height: 50px;
    line-height: 50px;
    padding-left: 70px;
    border: 1px solid black;
    border-left: none;
    border-top: none;
    display: inline-block;
}
.taps form label:nth-of-type(3){
    border-right: none;
}
.taps form p{
    font-size: 20px;
    position: absolute;
    top:50px;
    padding-left: 20px;
    display: none;
}
jixian34 发表于 2018-11-14 17:17
凑合写了个指点一二
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-15 22:21

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表