-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
267 lines (262 loc) · 12.7 KB
/
index.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<!DOCTYPE html>
<html>
<head>
<title>国内 ChatGPT 镜像网站最新使用指南与顶级镜像网站推荐</title>
<meta name="description" content="发现2024年最新的 ChatGPT 镜像网站使用指南与顶级镜像网站推荐。无需翻墙、无需注册账号,畅享无障碍的ChatGPT AI聊天服务。">
<meta name="keywords" content="ChatGPT, ChatGPT镜像网站, ChatGPT镜像站,ChatGPT使用指南, ChatGPT镜像, ChatGPT免费使用">
<meta property="og:title" content="国内 ChatGPT 镜像网站最新使用指南与顶级镜像网站推荐">
<meta property="og:description" content="发现2024年最新的 ChatGPT 镜像网站使用指南与顶级镜像网站推荐。无需翻墙、无需注册账号,畅享无障碍的ChatGPT AI聊天服务。">
<meta property="og:url" content="https://xiaoliulb.github.io/chatgpt-site/">
<meta property="twitter:title" content="国内 ChatGPT 镜像网站最新使用指南与顶级镜像网站推荐">
<meta property="twitter:description" content="发现2024年最新的 ChatGPT 镜像网站使用指南与顶级镜像网站推荐。无需翻墙、无需注册账号,畅享无障碍的ChatGPT AI聊天服务。">
<meta name="twitter:card" content="summary_large_image">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta charSet="utf-8" />
<meta http-equiv='content-language' content='zh-CN'>
<meta name="msvalidate.01" content="13FA48707DFB7A4DA2641B1733A668E6" />
<link rel="icon" href="/openai.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #fff;
overflow-x: hidden;
}
.container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 20px;
box-sizing: border-box;
}
.content {
text-align: center;
max-width: 800px;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
background: -webkit-linear-gradient(45deg, var(--color-1), var(--color-2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
font-size: 24px;
margin-bottom: 40px;
line-height: 1.5;
}
.button {
display: inline-block;
padding: 15px 30px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 24px;
font-weight: bold;
transition: all 0.3s ease;
}
.button:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--color-1), var(--color-2));
z-index: -1;
opacity: 0.8;
}
.arrow-down {
position: absolute;
bottom: 20px;
cursor: pointer;
font-size: 32px;
color: #007bff;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}
/* New Section Styles */
.markdown-content {
padding: 40px;
background-color: #282828;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
border-radius: 10px;
margin: 20px auto;
max-width: 800px;
}
.markdown-content h2 {
font-size: 36px;
margin-top: 20px;
}
.markdown-content p, .markdown-content li {
font-size: 18px;
line-height: 1.6;
}
.markdown-content table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.markdown-content th, .markdown-content td {
border: 1px solid #444;
padding: 10px;
text-align: left;
}
.markdown-content th {
background-color: #333;
}
/* Mobile Styles */
@media screen and (max-width: 767px) {
.container {
min-height: auto;
padding-top: 150px;
padding-bottom: 20px;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
}
.button {
font-size: 20px;
padding: 10px 20px;
}
.markdown-content {
padding: 20px;
}
.markdown-content h2 {
font-size: 28px;
}
.markdown-content p, .markdown-content li {
font-size: 16px;
}
.markdown-content table {
display: block;
overflow-x: auto;
width: 100%;
}
.markdown-content th, .markdown-content td {
white-space: nowrap;
}
.arrow-down {
display: none;
}
}
</style>
</head>
<body>
<div class="background"></div>
<div class="container">
<div class="content">
<h1>ChatGPT 镜像网站</h1>
<h2>2024 国内 ChatGPT 镜像网站最新使用指南与顶级镜像网站推荐。无需翻墙、无需注册账号,畅享无障碍的 ChatGPT</h2>
<a href="https://www.yixiaai.com" target="_blank" class="button">开始对话</a>
</div>
<div class="arrow-down" onclick="scrollToContent()">⬇️更多ChatGPT中文版镜像站</div>
</div>
<!-- Second Screen Content -->
<section class="markdown-content" id="more-content">
<h2>2025/01/08 最新更新 ChatGPT 镜像网站:</h2>
<p><a href="https://www.yixiaai.com/">https://www.yixiaai.com/</a></p>
<h2>介绍</h2>
<p>在本仓库中,我们汇总整理了多个国内 <strong>ChatGPT-4 中文版镜像网站</strong>,帮助用户在正常网络下也能访问 <strong>ChatGPT 镜像网站</strong>。</p>
<h2>什么是 ChatGPT 镜像网站</h2>
<p><strong>镜像网站</strong>(Mirror Site)是指通过复制原始网站内容和结构,创建的备用网站。其主要目的是在原始网站无法访问时,提供相同或类似的服务和信息。</p>
<h2>ChatGPT 镜像网站的用途</h2>
<ul>
<li><strong>绕过访问限制</strong>:在某些地区,访问 OpenAI 官方网站可能受到限制或阻塞,镜像站可以帮助用户绕过这些限制,继续使用 ChatGPT 服务。</li>
<li><strong>负载均衡</strong>:在高流量时期,镜像站可以分担部分用户请求,减轻官方服务器的负担,确保服务的稳定性。</li>
<li><strong>备份与冗余</strong>:如果官方服务遇到故障或维护,镜像站可以作为备用,保证用户依然能够访问聊天机器人。</li>
</ul>
<h3>免责声明</h3>
<p>请注意,以下所有链接和资源均为外部网站,我们不对其内容的合法性、安全性及稳定性负责。用户需自行判断其风险并酌情访问。请确保在使用这些网站时遵守相关法律法规。</p>
<h2>国内 ChatGPT 中文版镜像资源</h2>
<ul>
<li><a href="https://www.yixiaai.com/">https://www.yixiaai.com/</a> - 支持 GPT4、4o 以及 o1,支持 MJ 绘画</li>
<li><a href="https://chat.lify.vip/">https://chat.lify.vip/</a> - 支持 GPT4、4o 以及 o1</li>
<li><a href="https://guide1.lanjing.ai/">https://guide1.lanjing.ai/</a> - 支持 GPT4、4o</li>
<li><a href="https://cgn.lify.vip/">https://cgn.lify.vip</a> - 支持 GPT4、4o 支持 MJ 绘画</li>
<li><a href="http://chat.forwardminded.xyz/">http://chat.forwardminded.xyz/</a></li>
<li><a href="https://yixiaai.cn/">https://yixiaai.cn/</a></li>
<li><a href="https://gezhe.com/">https://gezhe.com/</a></li>
<li><a href="http://www.gpt-smart.com/">http://www.gpt-smart.com/</a></li>
<li><a href="https://chat.mac89.com/">https://chat.mac89.com/</a></li>
<li><a href="https://front2.stargpt.top/#/chat">https://front2.stargpt.top/#/chat</a></li>
<li><a href="https://chatgpt.ctfcode.com/#/register">https://chatgpt.ctfcode.com/#/register</a></li>
<li><a href="http://chat.niitcxl.cn">http://chat.niitcxl.cn</a></li>
<li><a href="https://dittin.com/">https://dittin.com/</a></li>
<li><a href="https://chat.yokonsan.com/">https://chat.yokonsan.com/</a></li>
<li><a href="https://chat.douresources.com">https://chat.douresources.com</a></li>
<li><a href="https://gpthink.xyz/#/chat">https://gpthink.xyz/#/chat</a></li>
<li><a href="https://gpt.fly2you.cn/web/">https://gpt.fly2you.cn/web/</a></li>
<li><a href="http://ai.wikll.com">http://ai.wikll.com</a></li>
<li><a href="http://chat.iisai.cn">http://chat.iisai.cn</a></li>
<li><a href="https://ssgpt.chat/">https://ssgpt.chat/</a></li>
<li><a href="http://mychatos.top/#/chat">http://mychatos.top/#/chat</a></li>
</ul>
<h2>国内自研大模型汇总</h2>
<ul>
<li><a href="https://yiyan.baidu.com/">https://yiyan.baidu.com/</a> - 文心一言,百度出品</li>
<li><a href="https://tongyi.aliyun.com/">https://tongyi.aliyun.com/</a> - 通义千问,阿里出品</li>
<li><a href="https://techday.sensetime.com/">https://techday.sensetime.com/</a> - 商量,商汤科技出品</li>
<li><a href="https://tiangong.kunlun.com/">https://tiangong.kunlun.com/</a> - 天工 AI 助手,天工大模型</li>
<li><a href="https://xinghuo.xfyun.cn/">https://xinghuo.xfyun.cn/</a> - 讯飞星火认知大模型</li>
<li><a href="https://moss.fastnlp.top/">https://moss.fastnlp.top/</a> - Moss,复旦团队出品</li>
<li><a href="https://www.so.com/zt/invite.html">https://www.so.com/zt/invite.html</a> - 360 智脑,360 出品</li>
<li><a href="https://github.com/THUDM/ChatGLM-6B">https://github.com/THUDM/ChatGLM-6B</a> - ChatGLM-6B 清华大学唐杰团队开发</li>
</ul>
<h2>国外其它大模型汇总</h2>
<ul>
<li><a href="https://talk.truthgpt.one/">https://talk.truthgpt.one/</a> - 马斯克出品,无需魔法,无需注册账号,直接使用</li>
</ul>
<h2>注意事项</h2>
<ul>
<li>请定期检查链接的有效性及其安全性。</li>
<li>遵守相关法律法规,合法合规地使用镜像网站。</li>
<li>如果发现上述链接存在安全问题或失效,请务必报告给我们,我们会及时更新。</li>
</ul>
<h2>更新日志</h2>
<p>将记录所有修改和更新,以便用户了解最新信息和变化。</p>
<p>如果你有任何疑问或建议,请通过 <a href="https://github.com/your-repo/issues">GitHub Issues</a> 提交,我们会尽快回复。</p>
</section>
<script>
const colors = [
['#ff0080', '#7928ca'],
['#ff4d4d', '#f9cb28'],
['#7928ca', '#4c88e8'],
['#4c88e8', '#4FE2B1'],
['#ff0080', '#ff7f00']
];
const randomIndex = Math.floor(Math.random() * colors.length);
const [color1, color2] = colors[randomIndex];
document.documentElement.style.setProperty('--color-1', color1);
document.documentElement.style.setProperty('--color-2', color2);
function scrollToContent() {
document.getElementById('more-content').scrollIntoView({ behavior: 'smooth' });
}
</script>
</body>
</html>