Files
element-plus/docs/examples/transitions/zoom.vue
知晓同丶 3b8a590baf docs: improve examples layout for narrow screens (#21489)
* docs: improve examples layout for narrow screens

* docs: style related

* style: [statistic] use utilities

* style: [input] remove deep

* style: [transitions] change style

* refactor: [date-picker-panel] narrow refactor
2025-08-21 10:22:05 +02:00

56 lines
1.2 KiB
Vue

<template>
<div>
<el-button @click="show = !show">Click Me</el-button>
<div class="transition-container">
<transition name="el-zoom-in-left">
<div v-show="show" class="transition-box">.el-zoom-in-left</div>
</transition>
<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 scoped>
.transition-container {
display: flex;
margin-top: 20px;
min-height: 100px;
flex-wrap: wrap;
gap: 16px;
}
.transition-box {
width: 200px;
height: 100px;
border-radius: var(--el-border-radius-base);
background-color: var(--el-color-primary);
text-align: center;
color: #fff;
padding: 20px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
word-break: break-word;
font-size: 14px;
}
</style>