<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDF 连续阅读</title>
<style>
body {
margin: 0;
background-color: #f7f7f7;
font-family: system-ui, -apple-system, sans-serif;
}
header {
background: #ffffff;
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
padding: 12px 16px;
position: sticky;
top: 0;
z-index: 100;
}
h1 {
font-size: 1.1rem;
margin: 0;
color: #333;
}
.pdf-viewer {
width: 100%;
height: 100vh;
border: none;
display: block;
margin: 0 0 8px 0;
}
</style>
</head>
<body>
<header>
<h1>PDF 作品集 / Portfolio</h1>
</header>
<!-- 第一份 PDF -->
<embed src="weizihanportfolio_1.pdf" type="application/pdf" class="pdf-viewer">
<!-- 第二份 PDF -->
<embed src="weizihanportfolio_2.pdf" type="application/pdf" class="pdf-viewer">
</body>
</html>