elementUI内置缩放过渡(缩放)

Posted on 2019-09-28 11:37  猫头唔食鱼  阅读(4920)  评论(0编辑  收藏  举报

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>