54 lines
1.2 KiB
Vue
54 lines
1.2 KiB
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<div :style="{ width: '1028px', height: '700px', margin: '0 auto' }">
|
||
|
|
<VPdfViewer
|
||
|
|
src="https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf"
|
||
|
|
local="fr_FR"
|
||
|
|
@loaded="onPdfLoaded"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { VPdfViewer } from "@vue-pdf-viewer/viewer";
|
||
|
|
|
||
|
|
const onPdfLoaded = () => {
|
||
|
|
const wrapper = document.querySelector(".vpv-pages-inner-container");
|
||
|
|
|
||
|
|
const observer = new IntersectionObserver(
|
||
|
|
(entries) => {
|
||
|
|
entries.forEach((entry, index) => {
|
||
|
|
if (entry.intersectionRatio > 0.5) {
|
||
|
|
console.log(entry.target.getAttribute("aria-label"));
|
||
|
|
}
|
||
|
|
});
|
||
|
|
},
|
||
|
|
{
|
||
|
|
root: wrapper,
|
||
|
|
threshold: [0.5],
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
const observePages = () => {
|
||
|
|
const pages = document.querySelectorAll(".vpv-page-inner-container");
|
||
|
|
pages.forEach((page) => {
|
||
|
|
if (!page.__observed__) {
|
||
|
|
observer.observe(page);
|
||
|
|
page.__observed__ = true;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
const mutationObserver = new MutationObserver(() => {
|
||
|
|
observePages();
|
||
|
|
});
|
||
|
|
|
||
|
|
if (wrapper) {
|
||
|
|
mutationObserver.observe(wrapper, { childList: true, subtree: true });
|
||
|
|
}
|
||
|
|
|
||
|
|
observePages();
|
||
|
|
};
|
||
|
|
</script>
|