Js制作手风琴

关于JavaScript,我对其有简单的认识,并且 关于制作手风琴的时候使用addEventListener可能会只绑定一个按钮的事件,因此使用下面代码的方法制作一个手风琴吧

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Accordion</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .wrapper {
            display: block;
            width: 80%;
            margin: 0 auto;
        }

        .list-item {
            display: block;
            width: 300px;
            height: 50px;
            background: rgba(12, 12, 12, .3);
            line-height: 50px;
            text-align: center;
            border-bottom: 1px solid rgba(12, 12, 12, .5);
            cursor: pointer;
        }

        .list-item:hover {
            background: rgba(111, 111, 111, .8);
            color: white;
        }

        .list ul {
            display: none;
        }

        .list ul li {
            display: block;
            width: 300px;
            height: 30px;
            background: rgba(100, 100, 100, .3);
            line-height: 30px;
            text-align: center;
            border-bottom: 1px solid rgba(12, 12, 12, .3);
        }
    </style>
</head>
<body>
<div class="wrapper">
    <div class="list">
        <p class="list-item">文件</p>
        <ul>
            <li><a href="#">hello</a></li>
            <li><a href="#">hello</a></li>
            <li><a href="#">hello</a></li>
        </ul>
    </div>
    <div class="list">
        <p class="list-item">编辑</p>
        <ul>
            <li><a href="#">hello</a></li>
            <li><a href="#">hello</a></li>
            <li><a href="#">hello</a></li>
        </ul>
    </div>
</div>
<script>
    var listItem = document.getElementsByClassName("list-item");

   

    for(var i=0;i<listItem.length;i++){
        listItem[i].addEventListener("click", function(){
            if(this.nextElementSibling.style.display=="block"){
                this.nextElementSibling.style.display = "none";
            }else{
                this.nextElementSibling.style.display="block";
            }
        },false);
       // console.log(listItem[i].nextElementSibling.childElementCount);
    }


</script>
</body>
</html>

  

转载于:https://www.cnblogs.com/fengyeyang/p/4986839.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值