这是网页版地址:

点我!!!!!

这是部分源代码,生成卡片展示的代码

纯html5

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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>(人丸)幻想生物图鉴</title>
<style>/* 样式 */
.card {
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 2px 2px 5px #ccc;
padding: 20px;
margin: 20px;
width: 300px;
height: 350px;
display: inline-block;
text-align: center;
background: #fff;
overflow: hidden; /* 隐藏溢出的背景 */
}

.card img {
max-width: 80%;
max-height: 80%;
object-fit: cover; /* 拉伸图片以填满框架 */
object-position: center;
}

.card h2 {
font-size: 20px;
margin: 20px 0;
}

.card a {
display: block;
margin-top: 20px;
font-size: 16px;
text-decoration: none;
color: #333;
font-weight: bold;
}

.card a:hover {
color: #0099ff;
}
</style>
</head>
<body>
// 定义模板
<template id="card-template">
<div class="card">
<img src="" alt="">
<h2></h2>
<a href="#" target="_blank">点我看看</a>
</div>
</template>

<!-- 在页面中使用模板循环生成卡片 -->
<div id="card-container"></div>

<script>
function createCard(imageSrc, title, link) {
// 克隆模板的函数
let template = document.querySelector('#card-template');
let card = template.content.cloneNode(true).querySelector('.card');

// 修改卡片的内容
card.querySelector('img').src = imageSrc;
card.querySelector('img').alt = title;
card.querySelector('h2').textContent = title;
card.querySelector('a').href = link;

// 将卡片添加到容器中
document.querySelector('#card-container').appendChild(card);
}

// 添加卡片
createCard('sh1/content_data/44_01.jpg', '幻想生物图鉴1', 'sh1/data/index.html');
//…………后面省略
createCard('sh22/content_data/22_top.jpg', '幻想生物图鉴22', 'sh22/data/index.html');

</script>
</body>
</html>

就酱,gpt牛逼