-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path两译本译词网络图对比.html
39 lines (38 loc) · 1.18 KB
/
两译本译词网络图对比.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oushiei120 的 GitHub Pages</title>
<!-- 保留基本的 iframe 样式 -->
<style>
iframe {
width: 100%;
height: 600px;
margin-bottom: 20px;
}
</style>
<script>
window.onload = function() {
const iframes = document.querySelectorAll('iframe');
iframes.forEach(iframe => {
// 只添加边框效果
iframe.style.border = '2px solid #333';
});
};
</script>
</head>
<body>
<h1>《红楼梦》日译本笑态翻译研究:基于语料库与文眼分析法</h1>
<h2>伊藤漱平译本</h2>
<ul>
<li><a href="network_plot_伊藤.html" target="_blank">点击看大图</a></li>
</ul>
<iframe src="network_plot_伊藤.html" title="伊藤"></iframe>
<h2>井波陵一译本</h2>
<ul>
<li><a href="network_plot_井波.html" target="_blank">点击看大图</a></li>
</ul>
<iframe src="network_plot_井波.html" title="井波"></iframe>
</body>
</html>