|
@@ -0,0 +1,164 @@
|
|
|
+## Built-in transition
|
|
|
+
|
|
|
+If you want, you can use Element built-in transition directly. Of course you need to know [vue#transition](https://vuejs.org/v2/api/#transition).
|
|
|
+
|
|
|
+### fade
|
|
|
+
|
|
|
+:::demo You can use `el-fade-in-linear` and `el-fade-in`.
|
|
|
+```html
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-button @click="show = !show">Click Me</el-button>
|
|
|
+
|
|
|
+ <div style="display: flex; margin-top: 20px; height: 100px;">
|
|
|
+ <transition name="el-fade-in-linear">
|
|
|
+ <div v-show="show" class="transition-box">.el-fade-in-linear</div>
|
|
|
+ </transition>
|
|
|
+ <transition name="el-fade-in">
|
|
|
+ <div v-show="show" class="transition-box">.el-fade-in</div>
|
|
|
+ </transition>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data: () => ({
|
|
|
+ show: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+ .transition-box {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 200px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #20A0FF;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ padding: 40px 20px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+```
|
|
|
+:::
|
|
|
+
|
|
|
+### zoom
|
|
|
+
|
|
|
+:::demo You can use `el-zoom-in-center`, `el-zoom-in-top` and `el-zoom-in-bottom`.
|
|
|
+```html
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-button @click="show2 = !show2">Click Me</el-button>
|
|
|
+
|
|
|
+ <div style="display: flex; margin-top: 20px; height: 100px;">
|
|
|
+ <transition name="el-zoom-in-center">
|
|
|
+ <div v-show="show2" class="transition-box">.el-zoom-in-center</div>
|
|
|
+ </transition>
|
|
|
+
|
|
|
+ <transition name="el-zoom-in-top">
|
|
|
+ <div v-show="show2" class="transition-box">.el-zoom-in-top</div>
|
|
|
+ </transition>
|
|
|
+
|
|
|
+ <transition name="el-zoom-in-bottom">
|
|
|
+ <div v-show="show2" class="transition-box">.el-zoom-in-bottom</div>
|
|
|
+ </transition>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data: () => ({
|
|
|
+ show2: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+ .transition-box {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 200px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #20A0FF;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ padding: 40px 20px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+```
|
|
|
+:::
|
|
|
+
|
|
|
+
|
|
|
+### collapse
|
|
|
+
|
|
|
+`el-collapse-transition` is a special component that implement collapse transtion.
|
|
|
+
|
|
|
+:::demo
|
|
|
+```html
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-button @click="show3 = !show3">Click Me</el-button>
|
|
|
+
|
|
|
+ <div style="margin-top: 20px; height: 200px;">
|
|
|
+ <el-collapse-transition>
|
|
|
+ <div v-show="show3">
|
|
|
+ <div class="transition-box">el-collapse-transition</div>
|
|
|
+ <div class="transition-box">el-collapse-transition</div>
|
|
|
+ </div>
|
|
|
+ </el-collapse-transition>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data: () => ({
|
|
|
+ show3: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+ .transition-box {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 200px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #20A0FF;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ padding: 40px 20px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-right: 20px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+```
|
|
|
+:::
|
|
|
+
|
|
|
+<style>
|
|
|
+ .transition-box {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ width: 200px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #20A0FF;
|
|
|
+ text-align: center;
|
|
|
+ color: #fff;
|
|
|
+ padding: 40px 20px;
|
|
|
+ margin-right: 20px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+
|
|
|
+<script>
|
|
|
+ module.exports = {
|
|
|
+ data: () => ({
|
|
|
+ show: true,
|
|
|
+ show2: true,
|
|
|
+ show3: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|