我是靠谱客的博主 殷勤小馒头,最近开发中收集的这篇文章主要介绍vue项目 友好 放大缩小设置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

vue项目 友好 放大缩小设置zoom属性

<template>
  <div id="app" :style="{zoom : zoomNum}">
    <button @click="change(1)">放大</button>
    <button @click="change(-1)">缩小</button>
    <router-view style="height:100%;padding-top:170px"  />
  </div>
</template>
<script>


export default ({
  data() {
    return {
      zoomNum:1
    }
  },
  methods:{
    change(num) {
      if(num > 0 ) {
        this.zoomNum = this.zoomNum +0.1;
      } else{
        this.zoomNum = this.zoomNum - 0.1

      }

    }
  }
 
})
</script>


<style lang="less" scoped>
  #app {
    font-family: Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* text-align: center; */
    color: #2c3e50;
    // overflow: hidden;
    // overflow-y: scroll;
    // height: 100vh;
  }
</style>

最后

以上就是殷勤小馒头为你收集整理的vue项目 友好 放大缩小设置的全部内容,希望文章能够帮你解决vue项目 友好 放大缩小设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部