Caddy
tcp/443 tcp/80
Open service 2a01:4f8:241:45e::2:80 · goolge.dpdns.org
2026-01-27 11:40
HTTP/1.1 301 Moved Permanently Alt-Svc: h3=":443"; ma=2592000 Date: Tue, 27 Jan 2026 11:40:49 GMT Location: https://goolge.dpdns.org/ Server: Caddy X-Amz-Id-2: meta-de-2-1 X-Amz-Request-Id: s3/1769514049.737286/uanI Connection: close Transfer-Encoding: chunked
Open service 2a01:4f8:241:489f::2:443 · goolge.dpdns.org
2026-01-27 11:40
HTTP/1.1 200 OK
Accept-Ranges: bytes
Alt-Svc: h3=":443"; ma=2592000
Content-Length: 13353
Content-Type: text/html
Date: Tue, 27 Jan 2026 11:40:49 GMT
Etag: "6a9900f1228ff317f7b2e6e8d337db1c"
Last-Modified: Sun, 03 Aug 2025 14:28:01 GMT
Server: Caddy
X-Amz-Id-2: meta-de-4-3
X-Amz-Request-Id: s3/1769514049.671636/lkEe
Connection: close
Page title: 一个简单图床
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>一个简单图床</title>
<link rel="stylesheet" href="all.min.css"> <!-- 引入FontAwesome 图标库 -->
<script src="clipboard.min.js"></script> <!-- 引入 Clipboard.js 库 -->
<style>
/* 设置整体页面居中 */
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f7fc;
margin: 0;
}
/* 主要内容容器 */
.container {
width: 500px;
background-color: white;
padding: 30px;
/* border-radius: 8px;*/
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
position: relative;
}
h2 {
text-align: center;
margin-top:-5px;
color: #333;
}
/* 文件上传框容器 */
.file-upload-container {
display: flex;
align-items: center;
gap: 10px; /* 文件框和文件名之间的间距 */
width: 100%;
}
/* 文件选择框 */
input[type="file"] {
display: none; /* 隐藏原始文件选择框 */
}
label {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: white;
/*border-radius: 5px;*/
cursor: pointer;
font-size: 16px;
flex-shrink: 0; /* 保证按钮不缩小 */
}
/* 文件名显示框 */
.file-name {
display: inline-block;
height: 40px; /* 和选择框高度一致 */
line-height: 40px; /* 垂直居中文本 */
padding-left: 10px;
background-color: #f3f3f3;
/* border: 1px solid #ddd;*/
/*border-radius: 5px;*/
color: #555;
font-size: 14px;
overflow: hidden; /* 防止文件名过长 */
text-overflow: ellipsis; /* 显示省略号 */
flex-grow: 1; /* 文件名区域自适应宽度 */
white-space: nowrap; /* 防止换行 */
cursor: pointer; /* 使文件名框可点击 */
}
button {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
font-size: 16px;
cursor: pointer;
/* border-radius: 5px;*/
margin-top: 10px;
}
button:hover {
background-color: #175fad;
}
/* 进度条容器 */
#progressContainer {
width: 100%;
background-color: #f3f3f3;
border: 1px solid #ddd;
margin-top: 20px;
display: none;
border-radius: 5px;
}
/* 进度条样式 */
#progressBar {
height: 30px;
width: 0%;
background-color: #007bff;
text-align: center;
color: white;
line-height: 30px;
font-weight: bold;
/*border-radius: 5px;*/
}
/* 显示处理中的文本 */
#processingText {
display: none;
font-size: 20px;
color: #007BFF;
margin-top:10px;
text-align: center;
}
/* 上传结果样式 */
#uploadResult {
margin-top: 20px;
text-align: center;
}
/* 提示文本 */
#fileError {
color: red;
font-size: 14px;
margin-top: 10px;
text-align: center;
}
/* 文件上传结果中的复制按钮 */
.copy-btn {
background-color: #007bff;
border: none;
color: white;
padding: 8px 16px;
cursor: pointer;