Files
blackwolf/content/aboutme/_index.md
2025-12-14 10:31:47 +08:00

584 B
Raw Blame History

<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>