-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (91 loc) · 3.48 KB
/
index.html
File metadata and controls
110 lines (91 loc) · 3.48 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<title>ASCII Lab</title>
<link rel="icon" type="image/x-icon" href="../img/ASCII_1.ico" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.staticfile.net/bootstrap/5.3.2/css/bootstrap.min.css">
<script src="https://cdn.staticfile.net/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="css_style.css">
<style>
.footer {
position: fixed;
bottom: 0;
}
#content {
height: 400px;
font-size: xx-large;
color: #ecf0f1;
font-family: 'Times New Roman', Times, serif;
text-align: center;
margin: auto;
z-index: 99999;
}
@media (max-width: 576px) {
#content {
font-size: large !important;
}
.footer {
padding-top: 0.2rem;
font-size: small;
}
}
#Layer1 {
z-index: 1;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.bg-img {
width: 100%;
height: 100%;
object-fit: cover; /* 核心:保持比例、填满容器 */
opacity: 0.8;
}
</style>
</head>
<body>
<div id="navbar"></div> <!-- 用于插入导航栏的容器 -->
<!-- <div id="Layer1" style="z-index: 1;position:fixed; left:0px; top:0px; width:100%; height:100%;">
<img src="img/bg3.jpg" width="100%" height="100%" opacity=0.8 />
</div> -->
<div id="Layer1">
<img src="img/bg3.jpg" class="bg-img">
</div>
<!-- <div class="scroll-container">
<div class="scroll-text"><a href="./News/20240516.html"
style="color: rgb(231, 226, 226); text-decoration: none;">ASCII LAB发布CCKS 2024评测任务,奖金40000元!</a>
</div>
</div> -->
<div id="content" style="z-index: 4;">
<img src="img/ASCII_1.jpg" alt="Cinque Terre" width="300" height="auto" style="margin-top: -9%; padding-bottom: 30px;">
<br>
<div class="div" style="margin-top: -50px;"><a id="title" href="ASCII.html" style="color:white; text-decoration: none;"><u>A</u>daptive
<u>S</u>ocial
<u>C</u>omputing
and <u>I</u>ntelligent <u>I</u>nformation processing</a>
<h1>ASCII Lab</h1>
</div>
</div>
<div class="footer">
<p>ASCII Lab, Institute of Information Engineering, Chinese Academy of
Sciences. No.19 Shucun Road,
Haidian District, Beijing, China<a
href="https://map.baidu.com/poi/%E4%B8%AD%E5%9B%BD%E7%A7%91%E5%AD%A6%E9%99%A2%E4%BF%A1%E6%81%AF%E5%B7%A5%E7%A8%8B%E7%A0%94%E7%A9%B6%E6%89%80/@12947450.025,4841838.03,19z?uid=dcaaf0f6ea39b2f7badf8f48&info_merge=1&isBizPoi=false&ugc_type=3&ugc_ver=1&device_ratio=1&compat=1&pcevaname=pc4.1&querytype=detailConInfo&da_src=shareurl">(Map)</a>
100085</p>
</div>
<script>
// 使用 fetch 动态加载 head.html
fetch('/head.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar').innerHTML = data;
})
.catch(error => console.error('Error loading navbar:', error));
</script>
</body>
</html>