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>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM