中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue怎么使用vue-pdf實現PDF文件預覽

發布時間:2023-03-15 16:21:38 來源:億速云 閱讀:249 作者:iii 欄目:開發技術

這篇文章主要介紹了Vue怎么使用vue-pdf實現PDF文件預覽的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue怎么使用vue-pdf實現PDF文件預覽文章都會有所收獲,下面我們一起來看看吧。

先看下效果 

Vue怎么使用vue-pdf實現PDF文件預覽

安裝

npm install vue-pdf

頁面按需引入并注冊

import Pdf from "vue-pdf"
export default {
  components: { Pdf }
}

完整代碼

<template>
  <div class="global">
    <div class="preview">
      <el-button type="success" @click="isShow = true">開始預覽</el-button>
    </div>
    <div class="pdfContainer" v-if="isShow">
      <div class="button">
        <el-button type="success" @click="prev()">上一頁</el-button>
        <el-button type="success" @click="next()">下一頁</el-button>
        <el-button type="success" @click="scaleD()">放大</el-button>
        <el-button type="success" @click="scaleX()">縮小</el-button>
        <el-button type="success" @click="clockwise()">順時針</el-button>
        <el-button type="success" @click="antiClockwise()">逆時針</el-button>
      </div>
      <div class="pdf">
        <pdf
          ref="pdf"
          :src="src"
          :page="currentPage"
          :rotate="pageRotate"
          @num-pages="pageCount = $event"
          @page-loaded="currentPage = $event"
          @loaded="loadPdfHandler"
        ></pdf>
      </div>
      <div class="page">
        <span class="pageNum">{{ currentPage }}</span>
        <span class="pageNum">/</span>
        <span class="pageNum">{{ pageCount }}</span>
      </div>
    </div>
  </div>
</template>
<script>
import Pdf from "vue-pdf";
export default {
  data() {
    return {
      src: "http://storage.xuetangx.com/public_assets/xuetangx/PDF/PlayerAPI_v1.0.6.pdf",  // pdf的路徑 實際項目后端返回
      currentPage: 0, // pdf文件頁碼
      pageCount: 0, // pdf文件總頁數
      scale: 100,  //  開始的時候默認和容器一樣大即寬高都是100%
      pageRotate: 0,  // 旋轉角度
      isShow: false
    };
  },
  components: { Pdf },
  mounted() {
    console.log(Pdf, "Pdf----->>>");
  },
  methods: {
    // pdf加載時
    loadPdfHandler(e) {
      this.currentPage = 1; // 加載的時候先加載第一頁
      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";
      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";
    },
    //  上一頁
    prev() {
      if (this.currentPage > 1) {
        this.currentPage--;
      }
    },
    // 下一頁
    next() {
      if (this.currentPage < this.pageCount) {
        this.currentPage++;
      }
    },
    //放大
    scaleD() {
      if(this.scale == 100) return this.$message.warning('已經是最大嘍~~')
      this.scale += 10;
      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";
      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";
    },
    //縮小
    scaleX() {
      if(this.scale == 40) return this.$message.warning('已經是最小嘍~~')
      this.scale += -10;
      this.$refs.pdf.$el.style.width = parseInt(this.scale) + "%";
      this.$refs.pdf.$el.style.height = parseInt(this.scale) + "%";
    },
    // 順時針
    clockwise() {
      this.pageRotate += 90;
    },
    // 逆時針
    antiClockwise() {
      this.pageRotate -= 90;
    },
  },
};
</script>
<style scoped>
.global {
  width: 100%;
  height: 100%;
}
.preview {
  width: 100%;
  height: 50px;
}
 
.pdfContainer {
  width: 100%;
  height: calc(100% - 50px);
}
.pdfContainer .button {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.pdfContainer .pdf {
  width: 100%;
  height: calc(100% - 100px);
  overflow-y: auto;
}
.pdfContainer .page {
  width: 100%;
  height: 50px;
}
 
.pageNum {
  font-size: 28px;
}
</style>

關于“Vue怎么使用vue-pdf實現PDF文件預覽”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue怎么使用vue-pdf實現PDF文件預覽”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

襄城县| 和静县| 慈利县| 博白县| 印江| 镇巴县| 周至县| 尼玛县| 南投县| 麻江县| 临邑县| 特克斯县| 旬阳县| 磐石市| 麦盖提县| 乐平市| 佛山市| 肇庆市| 虞城县| 收藏| 喜德县| 丽江市| 琼结县| 临朐县| 法库县| 商都县| 华蓥市| 化隆| 密云县| 卢氏县| 肇源县| 融水| 溆浦县| 准格尔旗| 安阳县| 金阳县| 缙云县| 乳山市| 金山区| 泰兴市| 阳曲县|