zoukankan      html  css  js  c++  java
  • elementUI内置缩放过渡(缩放)

    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>
  • 相关阅读:
    [BZOJ2969] 矩形粉刷
    数字 (number)
    字符串(String)
    小HY的四元组
    最大公约数(Max Gcd)
    [洛谷P2102] 地砖铺设
    Python OS模块(内置模块)
    json解析神器--jsonpath
    kafka 优势+应用场景
    Python之异常处理
  • 原文地址:https://www.cnblogs.com/luguankun/p/11602258.html
Copyright © 2011-2022 走看看