纯css折叠列表(子父两级)

<!DOCTYPE html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>美观的纯 CSS 折叠列表</title>
    <style>
        .cy-ul {
            list-style-type: none;
            padding: 0;
        }

        .cy-li {
            margin: 5px 0;
            position: relative;
            padding-left: 25px;
        }

        .cy-checkbox[type="checkbox"] {
            display: none;
        }

        .label {
            cursor: pointer;
            position: relative;
            padding-left: 15px;
        }

        /* 箭头样式 */
        .label:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(-45deg);
            width: 4px;
            height: 4px;
            border: solid black;
            border-width: 0 2px 2px 0;
            display: inline-block;
            transition: transform 0.2s;
        }

        /* 隐藏子级 */
        .children {
            display: none;
        }

        /* 当父项被选中时显示子级 */
        .cy-checkbox[type="checkbox"]:checked~.children {
            display: block;
        }

        /* 父项没有子级时,隐藏箭头 */
        .cy-li>.cy-ul.children:empty+label:before {
            display: none;
            /* 子级为空时不显示箭头 */
        }

        /* 当父项被选中时旋转箭头 */
        .cy-checkbox[type="checkbox"]:checked+label:before {
            transform: translateY(-50%) rotate(45deg);
        }
    </style>
</head>

<body>

    <h1>美观的纯 CSS 折叠列表</h1>

    <ul class="cy-ul">
        <li class="cy-li">
            <input class="cy-checkbox" type="checkbox" id="parent1">
            <label class="label" for="parent1">父级 1</label>
            <ul class="children cy-ul">
                <li class="cy-li">
                    子级 1-1
                </li>
            </ul>
        </li>

    </ul>

</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值