vue中实现弹出层动画效果的示例代码

时间:2022-08-25 09:56:25

1

?
1
2
3
4
5
6
7
8
9
10
11
<template>
 <div class="home">
 
  <!-- 首先将要过渡的元素用transition包裹,并设置过渡的name -->
  <transition name="mybox">
   <div class="box" v-show="boxshow"></div>
  </transition>
  
  <button @click="togglebox">按钮</button>
 </div>
</template>

2

?
1
2
3
4
5
data() {
  return {
   boxshow: false,
  };
 },

3

?
1
2
3
4
5
methods: {
  togglebox: function () {
   this.boxshow = !this.boxshow;
  },
 },

样式:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<style lang="scss" scoped>
.box {
 height: 500px;
 background-color: rgb(245, 224, 224);
 overflow: hidden;
}
 
/* 给过渡的name加样式 */
 
.mybox-leave-active,
.mybox-enter-active {
 transition: all 1s ease;
}
 
.mybox-leave-active,
.mybox-enter {
 height: 0px !important;
}
 
.mybox-leave,
.mybox-enter-active {
 height: 500px;
}
</style>

效果

vue中实现弹出层动画效果的示例代码

到此这篇关于vue中实现弹出层动画效果的示例代码的文章就介绍到这了,更多相关vue弹出层动画内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/ZiChen_Jiang/article/details/108776031

相关文章