废鸡程序员 2022-07-21 10:14 采纳率: 86%
浏览 76
已结题

我点击展开想加个过渡效果,不知道怎么加!

我点击展开收起的时候想加个过渡效果,不知道怎么加!
我点击展开收起的时候想加个过渡效果,不知道怎么加!

img

  • 写回答

4条回答 默认 最新

  • 土拨鼠1号 2022-07-21 10:42
    关注
    <!DOCTYPE html>
    <html>
    <head>
        <title>展开动画</title>
        <style type="text/css">
            .page{
                width: 200px;
                padding: 10px 20px;
                border: 1px solid #eee;
            }
            .container {
                overflow: hidden;
            }
            .container > .options{
                transition: all .5s;
                max-height: 0;
            }
            .container > .unfold{
                max-height: 150px;
            }
            .container > .btn{
                color: #4C98F7;
                cursor: pointer;
                text-decoration: underline;
            }
        </style>
    </head>
    <body>
        <div class="page">
            <div class="container">
                <div class="btn" onclick="operate(this)" unfold="1">展开</div>
                <div class="options">
                    <div class="option">选项1</div>
                    <div class="option">选项2</div>
                    <div class="option">选项3</div>
                    <div class="option">选项4</div>
                    <div class="option">选项5</div>
                    <div class="option">选项6</div>
                    <div class="option">选项7</div>
                </div>
            </div>
        </div>
    </body>
    <script type="text/javascript">
        function operate(btn){
            const optionsNode = document.querySelector(".container > .options");
            const unfold = btn.getAttribute("unfold");
            if(unfold && unfold==="1"){
                btn.innerText = "收缩";
                optionsNode.classList.add("unfold");
            }else{
                btn.innerText = "展开";
                optionsNode.classList.remove("unfold");
            }
            btn.setAttribute("unfold", unfold === "0" ? "1" : "0");
        }
    </script>
    </html>
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

问题事件

  • 系统已结题 7月29日
  • 已采纳回答 7月21日
  • 创建了问题 7月21日

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。