vue+vant+pdfh5:实现点击 pdf 预览所有图片
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
1、pdfh5 gitee
2、安装
npm i pdfh5
3、使用及实现
<template>
<div>
<head-title :navTitle="navTitle" @onGoBack="goBack">
<div id="pdf" @click="clickImg" />
<!-- 图片预览组件 -->
<van-image-preview v-model="show" :images="imgList" @change="onChange">
<template v-slot:index>{{ index + 1 +'/'+ imgList.length}}</template>
</van-image-preview>
</head-title>
</div>
</template>
<script>
import Pdfh5 from "pdfh5";
import "pdfh5/css/pdfh5.css";
import { baseURL } from "@/config";
export default {
name: "basic-info",
data() {
return {
imgList: "", //
navTitle: "",
pdfh5: null,
show: false,
index: 0,
};
},
created() {
this.init();
},
mounted() {
this.initPdf();
},
methods: {
init() {
let { name } = this.$route.query;
this.navTitle = name;
},
initPdf() {
this.pdfh5 = new Pdfh5("#pdf", {
pdfurl: baseURL,
goto: 1, // 回到顶部
});
// 允许pdf滚动
this.pdfh5.scrollEnable(true);
// 请求成功的回调
this.pdfh5.on("success", () => {
const list = [];
// 通过 document.images 获取所有HTML图片元素的集合,并将HTMLCollection格式(HTML元素的集合)转换成普通数组
const imageList = Array.prototype.slice.call(document.images)
imageList .forEach((el) => {
list.push(el.currentSrc);
});
this.imgList= list;
});
},
goBack() {
this.$router.go(-1);
},
clickImg() {
this.show = true;
},
onChange(index) {
this.index = index;
},
},
};
</script>
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)