Files
blackwolf/content/aboutme/_index.html
T
2025-12-14 10:34:35 +08:00

29 lines
581 B
HTML

<div class="pdf-container" onclick="openPdfFullscreen('cv_tiny.pdf')">
<iframe
src="cv_tiny.pdf#view=FitH"
width="70%"
height="600px"
style="border: none;">
</iframe>
</div>
<script>
function openPdfFullscreen(pdfUrl) {
// 打开新窗口,尝试全屏
const features = `
width=${screen.width},
height=${screen.height},
left=0,
top=0,
scrollbars=yes,
resizable=yes,
fullscreen=yes
`;
window.open(pdfUrl, '_blank', features);
// 备选方案:直接打开PDF
// window.open(pdfUrl, '_blank');
}
</script>