如何在微信小程序中实现如下效果?

发布于 2022-09-13 00:01:20 字数 130 浏览 15 评论 0

就是类似于图中这种子元素溢出自动折叠,并且有一个可以展开的按钮。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷乱花海 2022-09-20 00:01:20

浮动 弹性盒 自适应

折戟 2022-09-20 00:01:20
<div :class="isAllHeight % 2 != 0 ? 'common-search-all-h' : 'search-wrapper'">
 
</div>
<div>
        <span
          @click="seachMore"
          v-if="isAllHeight % 2 == 0"
          class="have-more-info"
          ><i class="el-icon-arrow-down"></i></span
        >
        <span
          @click="seachMore"
          v-if="isAllHeight % 2 != 0"
          class="have-more-info"
          ><i class="el-icon-arrow-up"></i></span
        >
</div>
data() {
    return {
      isAllHeight: 0,
    }
}
methods:{
  seachMore() {
      this.isAllHeight++;
  },
}
<style>
  .search-wrapper {
    background: #fff;
    padding: 20px 0 0 20px;
    border-radius: 4px;
    height: 70px;
    overflow: hidden;
  }

  .common-search-all-h {
    background: #fff;
    padding: 20px 0 0 20px;
    border-radius: 4px;
    height: 100%;
  }
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文