Files
blackwolf/content/aboutme/_index.html
2025-12-14 10:37:48 +08:00

56 lines
1.1 KiB
HTML

<div class="pdf-preview">
<iframe
src="cv_tiny.pdf#toolbar=0&navpanes=0"
width="70%"
height="600px"
style="border: none;"
title="PDF预览">
</iframe>
<!-- 透明覆盖层,用于捕获点击 -->
<div class="click-overlay" onclick="window.open('cv_tiny.pdf', '_blank')">
<div class="pdf-tooltip">点击在新窗口全屏查看</div>
</div>
</div>
<style>
.pdf-preview {
position: relative;
width: 100%;
height: 600px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.click-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.click-overlay:hover {
opacity: 1;
background: rgba(0,0,0,0.03);
}
.pdf-tooltip {
background: rgba(0,0,0,0.8);
color: white;
padding: 10px 20px;
border-radius: 25px;
font-size: 14px;
backdrop-filter: blur(4px);
pointer-events: none;
}
</style>