前端页面展开/折叠效果可通过v–show控制显示隐藏,但这样页面交互太刻意了,显得不是很顺畅,为了提高用户使用体验感可以使用过渡动画实现平缓地展开折叠效果~
一、页面结构
二、html代码
<template>
<div class="tool-param-wrap">
<!-- 向右的箭头 展开 -->
<div v-if="isFold" class="r-arrow" @click="handleTrigger">
<i class="el-icon-arrow-right"></i>
</div>
<div :class="['group-wrap', isFold ? 'is-fold' : 'not-fold']">
<!-- 向左的箭头 折叠 -->
<div class="fold-icon" @click="handleTrigger">
<i class="el-icon-arrow-left"></i>
</div>
</div>
<div :class="['group-p-box', isFold ? 'g-not-fold' : 'g-is-fold']"></div>
</div>
</template>
三、css样式
.tool-param-wrap {
display: flex;
position: relative;
width: 100%;
height: calc(100vh - 78px);
.r-arrow {
cursor: pointer;
position: absolute;
width: 14px;
height: 14px;
left: 15px;
top: 28px;
}
.is-fold {
transition: all 0.2s;
width: 0px;
}
.not-fold {
width: 200px;
border: 1px solid #f2f3f8;
}
.group-p-box {
height: calc(100vh - 110px);
overflow-y: auto;
}
.g-not-fold {
width: 100%;
}
.g-is-fold {
width: calc(100% - 200px);
transition: all 0.2s;
}
}
重点:transition: all 0.2s;
transition: all 0.2s; 是简写等价于 transition: 过渡属性 过渡效果延迟;
CSS 过渡https://www.w3school.com.cn/css/css3_transitions.asp
四、折叠展开事件处理函数
handleTrigger() {
this.isFold = !this.isFold;
}
五、效果展示
这世界很喧嚣,做你自己就好
原文地址:https://blog.csdn.net/tt1234561009/article/details/131953998
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_23052.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。