当前位置:首页 » 《随便一记》 » 正文

CSS实现从下至上弹出的抽屉动画

25 人参与  2023年05月08日 18:02  分类 : 《随便一记》  评论

点击全文阅读


从下至上展开抽屉动画

<!DOCTYPE html><html><head>  <meta charset="UTF-8">  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />  <title></title>  <style>    .container {      margin: auto;      top: 460px;      width: 320px;      height: 30px;      position: relative;      background-color: rgba(0, 0, 0, 0.4);      overflow-y: auto;      scroll-behavior: smooth;      border-radius: 20px;    }    /* 隐藏滚动条 */    ::-webkit-scrollbar {      display: none;    }    .expend {      animation: expend ease 1s forwards;    }    .close-container {      animation: no-expend ease 1s forwards;    }    @keyframes expend {      from {        top: 460px;        height: 30px;      }      to {        height: 330px;        top: 160px;      }    }    @keyframes no-expend {      from {        height: 330px;        top: 160px;      }      to {        top: 460px;        height: 30px;      }    }    .close {      color: aliceblue;      right: 0;      margin: 5px 10px;      position: absolute;    }    .title {      color: aliceblue;      height: 30px;      line-height: 30px;      margin: 0 10px;      position: absolute;    }    .list {      display: flex;      /* 子元素换行 */      flex-wrap: wrap;      white-space: nowrap;      padding-top: 24px;    }    .item {      width: 80px;      height: 80px;      margin: 40px;      display: flex;      flex-direction: column;      justify-content: space-around;      align-items: center;    }    .item-img {      width: 40px;      height: 40px;    }  </style></head><body>  <div class='container' id='container'>    <div class='title'>抽屉标题</div>    <div class='close' onclick='closeHandle()'>↑</div>    <div class='list'>      <div class='item'>        <img src="./Icon_template.png" class="item-img">        <span class='item-text'>内容1</span>      </div>      <div class='item'>        <img src="./Icon_template.png" class="item-img">        <span class='item-text'>内容2</span>      </div>      <div class='item'>        <img src="./Icon_template.png" class="item-img">        <span class='item-text'>内容3</span>      </div>      <div class='item'>        <img src="./Icon_template.png" class="item-img">        <span class='item-text'>内容4</span>      </div>      <div class='item'>        <img src="./Icon_template.png" class="item-img">        <span class='item-text'>内容4</span>      </div>    </div>  </div>  <script>    const closeHandle = () => {      console.log('关闭和展开');      const dom = document.getElementById('container');      const closeDom = document.getElementsByClassName('close')[0];      if (!dom.className.match(/(?:^|\s)expend(?!\S)/)) {        dom.className = "container expend";        setTimeout(() => {          closeDom.innerText = 'X'        }, 100)      } else {        dom.className = "container close-container";        setTimeout(() => {          closeDom.innerText = '↑'        }, 100)      }    }  </script></body></html>

请添加图片描述


点击全文阅读


本文链接:http://zhangshiyu.com/post/61624.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最新文章

  • 林晚夏江肆年(进错房,嫁给八零最牛特种兵在线阅读)全文免费阅读无弹窗大结局_(林晚夏江肆年)进错房,嫁给八零最牛特种兵在线阅读免费阅读全文最新章节列表_笔趣阁(林晚夏江肆年) -
  • 进错房,嫁给八零最牛特种兵完整版阅读小说(林晚夏江肆年)全文免费阅读无弹窗大结局_(进错房,嫁给八零最牛特种兵完整版阅读)林晚夏江肆年免费阅读全文最新章节列表_笔趣阁(进错房,嫁给八零最牛特种兵完整版阅读) -
  • 新雪藏旧事全文全文(商云萝周砚京)全文免费阅读无弹窗大结局_(新雪藏旧事全文小说免费阅读)最新章节列表_笔趣阁(新雪藏旧事全文) -
  • 在线免费小说重生七零替嫁:不嫁教授,嫁军官_乔珊珊乔婉月新热门小说_热门小说乔珊珊乔婉月
  • 免费小说《冯云漪厉晋泽》已完结(冯云漪厉晋泽)热门小说大结局全文阅读笔趣阁
  • 祁兰湘邵黎晖小说_祁兰湘邵黎晖完整版大结局小说免费阅读
  • 完整免费小说老公心疼青梅将她留宿新房,却将怀孕的我赶出家门(乔玥傅慎行姜禾)_老公心疼青梅将她留宿新房,却将怀孕的我赶出家门(乔玥傅慎行姜禾)完本小说免费阅读(乔玥傅慎行姜禾)
  • 新雪藏旧事:结局+番外+完结免费小说在线阅读_小说完结推荐新雪藏旧事:结局+番外+完结商云萝周砚京热门小说
  • 初逢青山梦长安(顾怀瑾沈书妤)阅读 -
  • 无删减版《绝对权力:从天崩开局走上官途巅峰》在线免费阅读
  • 《绝对权力:从天崩开局走上官途巅峰》小说在线试读,《绝对权力:从天崩开局走上官途巅峰》最新章节目录
  • 裴泽苏星辰何娇(满目星辰不及你小说)精彩章节在线阅读

    关于我们 | 我要投稿 | 免责申明

    Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1