js原生实现手风琴下拉菜单

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<style>

    /* 打开和关闭手风琴面板的样式 */

    .accordion {

        background-color: #eee;

        color: #444;

        cursor: pointer;

        padding: 18px;

        width: 100%;

        text-align: left;

        border: none;

        outline: none;

        transition: 0.4s;

    }

    /* 设置点击和鼠标移到选项上面时(悬停)的样式 */

    .active,

    .accordion:hover {

        background-color: #ccc;

    }

    /* 为手风琴面板设计样式。 默认隐藏 */

    .panel {

        padding: 0 18px;

        background-color: white;

        max-height: 0;

        overflow: hidden;

        transition: max-height 0.2s ease-out;

    }

    /* 设置 +、- 标志 */

    .accordion:after {

        content: '\002B';

        /* Unicode 字符 + 号 */

        color: #777;

        font-weight: bold;

        float: right;

        margin-left: 5px;

    }

    .active:after {

        content: "\2212";

        /* Unicode 字符 - 号 */

    }

</style>

<body>

    <button class="accordion">Runoob 1</button>

    <div class="panel">

        <p>123123123123123123</p>

    </div>

    <button class="accordion">Runoob 2</button>

    <div class="panel">

        <p>123123123123123123</p>

    </div>

    <button class="accordion">Runoob 3</button>

    <div class="panel">

        <p>123123123123123123</p>

        <script>

            var acc = document.getElementsByClassName("accordion");

            var i;

            for (i = 0; i < acc.length; i++) {

                acc[i].addEventListener("click", function () {

                    this.classList.toggle("active");

                    var panel = this.nextElementSibling;

                    if (panel.style.maxHeight) {

                        panel.style.maxHeight = null;

                    } else {

                        panel.style.maxHeight = panel.scrollHeight + "px";

                    }

                });

            }

        </script>

    </div>

</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值