vue.js 实现点击展开收起动画效果
作者:是渔不是鱼 时间:2024-05-29 22:47:44
最近公司项目加了个页面,其中要求是这样的,点击对应列表,展开和收起,其实就是显示和隐藏内容部分;说来惭愧,我花了半天时间才搞出来(自黑一下~),接下来分享给大家,先上效果图:
vue页面:
<template>
<div class="dealRecord-wrap">
<div class="title-contant" v-for="(item,index) in items " >
<div class="title" @click="showHide(index)">
<h3>2018年0{{index+6}}月</h3>
<div class="number">800笔<i></i></div>
</div>
<div class="contant">
<ul>
<li v-for="i in item.allNumber">
{{index+6}}
</li>
</ul>
</div>
</div>
</div>
</template>
<script>
export default{
data(){
return{
items:[
{v:'qqq',allNumber:1},
{v:'aaa',allNumber:2},
{v:'qqq',allNumber:3},
],
}
},
created(){
document.body.style.backgroundColor = '#f6f6f6';
},
mounted(){
for(var i=0;i<3;i++){ //这里取值自后台返回的长度,设置页面渲染完成后是否展开,此处不展开
document.getElementsByClassName('contant')[i].style.height = '0px';
}
},
components:{
},
methods:{
showHide(index){ //点击展开收起
let contant = document.getElementsByClassName('contant')[index]; //这里我们通过参数index来让浏览器判断你点击的是哪一个列表
let height = contant.getBoundingClientRect().height; //获取页面元素的当前高度
document.getElementsByTagName('i')[index].style.transform = !!height?'rotateX(0deg)':'rotateX(180deg)';
if (!!height) {
contant.style.height = height + 'px';
let f = document.body.offsetHeight; //强制相应dom重绘,使最新的样式得到应用
contant.style.height = '0px';
} else {
contant.style.height = 'auto';
height = contant.getBoundingClientRect().height;
contant.style.height = '0';
let f = document.body.offsetHeight;
contant.style.height = height + 'px';
}
}
},
beforeDestroy(){
document.body.style.backgroundColor = '#fff';
}
}
</script>
<style type="text/scss" lang="scss" scoped>
.dealRecord-wrap{margin-bottom: 100px;
.title-contant{overflow: hidden; /* 这个是重点 */
.title{height: 84px;padding: 0 24px;border-bottom: 1px solid #eaeaea;/*px*/
h3{height: 84px;font-size: 28px;color: #333;display: flex;align-items: center;float: left;;margin-left: 10px;}
.number{height: 84px;font-size: 24px;color: #666;display: flex;align-items: center;float: right;}
.number i{display: inline-block;width: 23px;height: 13px;background: url('../../assets/images/icon_dropup@2x.png');background-repeat: no-repeat;background-size: 23px 13px;background-position: right 6px center;padding-right: 35px;display: flex;align-items: center; float: right;transform:rotateX(0deg);}
}
.contant{background: #fff;transition: height 1s; /* 这个也是重点 */
ul li{padding: 0 24px;height: 142px;display: flex;align-items: center;}
ul li:not(:last-child){border-bottom: 1px solid #f6f6f6;/*px*/}
}
}
}
</style>
来源:http://www.cnblogs.com/silent007/p/9188486.html
标签:vue.js,点击,展开,收起
0
投稿
猜你喜欢
golang通过mysql语句实现分页查询
2024-01-23 13:30:03
Python中的pandas表格模块、文件模块和数据库模块
2024-01-28 05:32:45
python使用pyaudio录音和格式转化方式
2023-11-07 19:30:03
零基础写python爬虫之打包生成exe文件
2022-08-31 23:10:38
Python中垃圾回收和del语句详解
2023-12-20 01:02:55
一文讲解如何查看python脚本所依赖三方包及其版本
2022-09-17 22:51:04
Vue循环组件加validate多表单验证的实例
2024-05-05 09:23:39
MySQL数据库的自动备份与数据库被破坏后的恢复
2010-03-18 15:30:00
MySQL查看和修改字符编码的实现方法
2024-01-26 00:20:22
Python简单实现区域生长方式
2023-08-08 12:07:38
Python中Requests-get方法的使用
2021-05-31 08:35:31
Python3.9最新版下载与安装图文教程详解(Windows系统为例)
2023-12-13 20:26:51
解决Vue警告Write operation failed:computed value is readonly
2024-04-09 10:49:25
pip安装库报错[notice] A new release of pip available: 22.2 -> 22.2.2
2021-07-15 15:57:04
vuex实现购物车功能
2024-05-08 10:43:27
Vue实现文本编译详情
2024-06-05 09:20:06
Vue传参一箩筐(页面、组件)
2024-05-29 22:44:13
再说淘宝的评价和信用机制
2008-07-10 12:43:00
PHP读取文本文件并逐行输出该行使用最多的字符与对应次数的方法
2024-05-11 10:09:43
怎样处理 MySQL中与文件许可有关的问题
2008-11-27 16:12:00