vue3+vite在线预览pdf

效果图

代码

javascript 复制代码
<template>
    <div class="pdf-preview">
        <div class="pdf-wrap">
            <vue-pdf-embed :source="state.source" :style="scale" class="vue-pdf-embed" :page="state.pageNum" />
        </div>
        <div class="page-tool">
            <div class="page-tool-item" @click="lastPage()">上一页</div>
            <div class="page-tool-item" @click="nextPage()">下一页</div>
            <div class="page-tool-item">{{state.pageNum}}/{{state.numPages}}</div>
            <div class="page-tool-item" @click="pageZoomOut()">放大</div>
            <div class="page-tool-item" @click="pageZoomIn()">缩小</div>
            <div class="page-tool-item" @click="$emit('close')">关闭</div>
        </div>
    </div>
</template>
<script setup lang="ts">
import VuePdfEmbed from "vue-pdf-embed";
//import { createLoadingTask } from "vue3-pdfjs/esm/vue-pdf.js";
import * as pdfjsLib from "pdfjs-dist";
import { reactive, onMounted, computed } from "vue";

const props = defineProps({
    pdfUrl: {
        type: String,
        required: true
    }
})


const state = reactive({
    source: props.pdfUrl, //预览pdf文件地址
    pageNum: 1, //当前页面
    scale: 1, // 缩放比例
    numPages: 0, // 总页数
});
const scale = computed(() => `transform:scale(${state.scale})`)
function lastPage() {
    if (state.pageNum > 1) {
        state.pageNum -= 1;
    }
}
function nextPage() {
    if (state.pageNum < state.numPages) {
        state.pageNum += 1;
    }
}
function pageZoomOut() {
    if (state.scale < 2) {
        state.scale += 0.1;
    }
}
function pageZoomIn() {
    if (state.scale > 0.8) {
        state.scale -= 0.1;
    }
}
onMounted(() => {
    pdfjsLib.GlobalWorkerOptions.workerSrc = "./pdf.worker.js";
    const loadingTask = pdfjsLib.getDocument(state.source);
    loadingTask.promise.then((pdf) => {
        state.numPages = pdf.numPages;
    });
});

</script>
<style lang="css" scoped>
.pdf-preview {
    position: fixed;
    height: 100vh;
    width: 100vw;
    padding: 20px 0;
    box-sizing: border-box;
    background-color: #e9e9e9;
    left: 0;
    top: 0;
    z-index: 99999999;
    overflow-y: auto;
}

.pdf-wrap {
    overflow-y: auto;
}

.vue-pdf-embed {
    text-align: center;
    width: 60vw;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-tool {
    position: fixed;
    bottom: 35px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    background: rgb(66, 66, 66);
    border-radius: 19px;
    z-index: 100;
    cursor: pointer;
    margin-left: 50%;
    transform: translateX(-50%);
}

.page-tool-item {
    padding: 8px 15px;
    padding-left: 10px;
    cursor: pointer;
    color: #fff !important;
}
</style>
相关推荐
lzb_kkk17 天前
【MFC】编辑框、下拉框、列表控件
c语言·开发语言·c++·mfc·1024程序员节
lzb_kkk19 天前
【MFC】树控件的使用详解
开发语言·c++·windows·mfc·1024程序员节
SizeTheMoment1 个月前
List介绍
1024程序员节
开利网络1 个月前
产业互联网+三融战略:重构企业增长密码
大数据·运维·服务器·人工智能·重构·1024程序员节
wei_shuo2 个月前
从数据中台到数据飞轮:实现数据驱动的升级之路
1024程序员节·数据飞轮
玖剹2 个月前
矩阵区域和 --- 前缀和
数据结构·c++·算法·leetcode·矩阵·动态规划·1024程序员节
jamison_13 个月前
文心一言与 DeepSeek 的竞争分析:技术先发优势为何未能转化为市场主导地位?
人工智能·ai·chatgpt·gpt-3·1024程序员节
NaZiMeKiY3 个月前
HTML5前端第六章节
前端·html·html5·1024程序员节
jamison_13 个月前
颠覆未来:解锁ChatGPT衍生应用的无限可能(具体应用、功能、付费模式与使用情况)
ai·chatgpt·1024程序员节
NaZiMeKiY3 个月前
HTML5前端第七章节
1024程序员节