mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
851242e317
* feat(docs): add source and contributors closes #6038 * feat(docs): ignore contributor when dev * ci: add github token * fix: lint * fix: page * fix: placeholder * ci: remove preview
41 lines
926 B
Vue
41 lines
926 B
Vue
<template>
|
|
<div>
|
|
<el-button @click="show = !show">Click Me</el-button>
|
|
|
|
<div style="display: flex; margin-top: 20px; height: 100px">
|
|
<transition name="el-zoom-in-center">
|
|
<div v-show="show" class="transition-box">.el-zoom-in-center</div>
|
|
</transition>
|
|
|
|
<transition name="el-zoom-in-top">
|
|
<div v-show="show" class="transition-box">.el-zoom-in-top</div>
|
|
</transition>
|
|
|
|
<transition name="el-zoom-in-bottom">
|
|
<div v-show="show" class="transition-box">.el-zoom-in-bottom</div>
|
|
</transition>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const show = ref(true)
|
|
</script>
|
|
|
|
<style>
|
|
.transition-box {
|
|
margin-bottom: 10px;
|
|
width: 200px;
|
|
height: 100px;
|
|
border-radius: 4px;
|
|
background-color: #409eff;
|
|
text-align: center;
|
|
color: #fff;
|
|
padding: 40px 20px;
|
|
box-sizing: border-box;
|
|
margin-right: 20px;
|
|
}
|
|
</style>
|