elementUI內置縮放過渡,包括
el-zoom-in-center , 中心縮放
el-zoom-in-top, 往上縮放
el-zoom-in-bottom,往下縮放
在需要縮放的元素外層添加transition標簽,name屬性添加上面幾個值即可
例子:
<template> <div> <div class="ctn"> <transition name="el-zoom-in-center"> <div class="box" v-show="show">el-zoom-in-center</div> </transition> <transition name="el-zoom-in-top"> <div class="box" v-show="show">el-zoom-in-top</div> </transition> <transition name="el-zoom-in-bottom"> <div class="box" v-show="show">el-zoom-in-bottom</div> </transition> </div> <el-button type="primary" @click="zoom()">縮放</el-button> </div> </template> <script> export default { name: "HelloWorld", data() { return { show:true }; }, methods: { zoom(){ this.show = !this.show; } }, }; </script> <style lang="css" scoped> .ctn{ width: 1000px; height: 300px; } .box { display: inline-block; width: 200px; height: 200px; background-color: greenyellow; text-align: center; line-height: 200px; color: #fff; margin: 0 20px 20px 0; } </style>