Puo's 菜园子 学习园地 http://puo.cn
易记网址: http://wordpress.cn.com

我的绑定域名网站检测引导页

#域名

http://www.hanshuailing.com/haodongxi/loc-url.html

我的网站很多绑定域名,时间久了,我自己也记不得哪个正在服务了,就用了这个页面,作为来回测试,本文为此页面服务的更新记录使用:

  1. 2025年9月18日-修改:待添加google blog绑定,上次没有绑定好
  2. 2025年9月18日-修改:显示了所有网址 无法访问的时候,可看到具体的网址了
  3. 2025年9月18日-修改:更换了代码源码,下图的代码已改吧
  4. 2025年9月18日-问题:如果域名是绑定问题,不是服务器端问题,显示的是正常的
  5. 2025年9月30日-修改:卖掉了狐蒂云,下架永久HK服务器,后面不再玩永久机了
  6. 垃圾三丰云 备案域名3.jiyun.net 和不备案cname:sanfengyun.jiyun.net后面不再统计,纯当没有

 

我的绑定域名网站检测引导页

下面是参考源码:


<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的绑定资源导航发布页,收藏我回家不迷路!</title>
<meta name="description" content="绑定域名站发布页,收藏我回家不迷路!">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
:root {
--primary-color: #3b82f6;
--secondary-color: #60a5fa;
--text-color: #1f2937;
--card-background: rgba(255, 255, 255, 0.9);
--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text-color);
line-height: 1.6;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(-45deg, #e6f2ff, #fff0f5, #f0f7ff, #fff5e6);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
overflow-x: hidden;
font-size: 16px; /* 恢复到之前的基础字体大小 */
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.wrapper {
padding: 2rem;
width: 100%;
max-width: 600px;
position: relative;
}
.main {
background-color: var(--card-background);
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
padding: 2.5rem;
backdrop-filter: blur(10px);
transition: var(--transition);
}
.main:hover {
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
h1 {
font-size: 2.5rem;
color: var(--primary-color);
text-align: center;
margin-bottom: 1.5rem;
font-weight: 700;
}
ul {
list-style-type: none;
margin-bottom: 1.5rem;
}
li {
margin-bottom: 1rem;
padding: 1rem;
background-color: rgba(248, 250, 252, 0.8);
border-radius: 10px;
transition: var(--transition);
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
}
li:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
li a {
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
transition: var(--transition);
display: flex;
align-items: center;
}
li a:hover {
color: var(--secondary-color);
}
li a i {
margin-right: 0.5rem;
font-size: 1.2em;
}
.notice {
background-color: rgba(230, 242, 255, 0.8);
border-left: 4px solid var(--primary-color);
padding: 1rem;
margin-top: 1rem;
border-radius: 10px;
transition: var(--transition);
}
.notice:hover {
background-color: rgba(230, 242, 255, 1);
}
.footer {
margin-top: 2rem;
text-align: center;
color: var(--text-color);
font-weight: 300;
opacity: 0.8;
transition: var(--transition);
}
.footer:hover {
opacity: 1;
}
.bookmark-btn {
display: block;
width: 100%;
padding: 1rem;
background-color: var(--primary-color);
color: white;
text-align: center;
border: none;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
margin-bottom: 1.5rem;
position: relative;
overflow: hidden;
}
.bookmark-btn:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.bookmark-btn::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 5px;
height: 5px;
background: rgba(255, 255, 255, 0.5);
opacity: 0;
border-radius: 100%;
transform: scale(1, 1) translate(-50%);
transform-origin: 50% 50%;
}
.bookmark-btn:focus:not(:active)::after {
animation: ripple 1s ease-out;
}
@keyframes ripple {
0% { transform: scale(0, 0); opacity: 1; }
20% { transform: scale(25, 25); opacity: 1; }
100% { opacity: 0; transform: scale(40, 40); }
}
.bg-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.bg-animation span {
position: absolute;
display: block;
width: 20px;
height: 20px;
background: rgba(255, 255, 255, 0.2);
animation: move 25s infinite linear;
}
.bg-animation span:nth-child(1) { top: 20%; left: 20%; animation-duration: 15s; }
.bg-animation span:nth-child(2) { top: 60%; left: 80%; animation-duration: 17s; width: 40px; height: 40px; }
.bg-animation span:nth-child(3) { top: 40%; left: 40%; animation-duration: 19s; }
.bg-animation span:nth-child(4) { top: 80%; left: 10%; animation-duration: 21s; }
@keyframes move {
0% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; border-radius: 0; }
100% { transform: translateX(-1000px) translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}
@media (max-width: 768px) {
body {
font-size: calc (14px + 0.390625vw); /* 在移动设备上使用响应式字体大小 */
}
.main {
padding: 2rem;
}
h1 {
font-size: 2rem;
}
}
.status-badge {
padding: 2px 6px;
border-radius: 4px;
font-size: 0.8em;
margin-left: 10px;
}
.status-normal {
background-color: #4CAF50;
color: white;
}
.status-error {
background-color: #f44336;
color: white;
}
li.disabled {
opacity: 0.5;
cursor: not-allowed;
}
li.disabled a {
pointer-events: none;
}
</style>
</head>
<body>
<div class="bg-animation">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="wrapper">
<main class="main">
<h1>绑定域名的站测开放</h1>
<button class="bookmark-btn">
<i class="fas fa-bookmark"></i> Ctrl+D 收藏本页到浏览器收藏夹
</button>
<ul id="url-list">

<li data-url="http://loc.jiyun.net/">
<span>小主机WP</span>
<a href="http://loc.jiyun.net/" target="_blank">
<i class="fas fa-external-link-alt"></i> loc.jiyun.net:84 Chmlfrp
</a>
<span class="status-badge"></span>

</li>
<li data-url="http://mibiao.tuoka.cc/">
<span>loc-frp-米表-cf</span>
<a href="http://mibiao.tuoka.cc/" target="_blank">
<i class="fas fa-external-link-alt"></i> loc_host 端口85 cloudflare
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://dh1.zuizhuai.cn/">
<span>aliyun 导航</span>
<a href="http://dh1.zuizhuai.cn" target="_blank">
<i class="fas fa-external-link-alt"></i> aliyunsh-2027到期
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://szhdy.691699.xyz">
<span>孤蒂云</span>
<a href="http://szhdy.691699.xyz" target="_blank">
<i class="fas fa-external-link-alt"></i> 孤蒂云-永久
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://dogyun.691699.xyz/">
<span>dogyun 1h2g</span>
<a href="http://dogyun.691699.xyz/" target="_blank">
<i class="fas fa-external-link-alt"></i> dogyun 1h2g 26/1/4
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://huaweiyun.zuizhuai.cn/">
<span>华为云贵州</span>
<a href="http://huaweiyun.zuizhuai.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> 华为云贵州 26/4/23
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://github.691699.xyz">
<span>github-米表</span>
<a href="http://github.691699.xyz/" target="_blank">
<i class="fas fa-external-link-alt"></i> xpp9.github.com/laohan
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://tuoka.cc/">
<span>Notion-puo</span>
<a href="http://tuoka.cc/" target="_blank">
<i class="fas fa-external-link-alt"></i> Notion puo.notion.so
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://huaweiyun.zuizhuai.cn/">
<span>google blog</span>
<a href="http://huaweiyun.zuizhuai.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> gblog未绑定 xpp9.blogspot.com
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://puo.cn/">
<span>阿里云内蒙古</span>
<a href="http://puo.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> 阿里云内蒙古puo.cn
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://222.domains/">
<span>QQ硅谷</span>
<a href="http://222.domains/" target="_blank">
<i class="fas fa-external-link-alt"></i> QQ硅谷
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://www.hanshuailing.com/haodongxi/jiyuntools.html">
<span>西部数码</span>
<a href="http://www.hanshuailing.com/haodongxi/jiyuntools.html" target="_blank">
<i class="fas fa-external-link-alt"></i> 西部数码
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://hcwl.cn/">
<span>卓老师建站</span>
<a href="http://www.hcwl.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> 海川官网
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://tuoche.cc/">
<span>Mituo</span>
<a href="http://tuoche.cc/" target="_blank">
<i class="fas fa-external-link-alt"></i> 米拓
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://shuai.btlcrm.com/crm/">
<span>web客户开发</span>
<a href="http://shuai.btlcrm.com/crm/" target="_blank">
<i class="fas fa-external-link-alt"></i> 淘宝WEB客户跟进
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://u96.jau.cn/">
<span>Loc——u96盘</span>
<a href="http://u96.jau.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> u96.jau.cn:96德阳VIP
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://u98.gangying.net">
<span>U盘98</span>
<a href="http://u98.gangying.net/" target="_blank">
<i class="fas fa-external-link-alt"></i> u98.gangying.net:98-十堰VIP
<span class="status-badge"></span>
</li>
<li data-url="http://box.zuizhuai.cn/">
<span>文件BOX</span>
<a href="http://box.zuizhuai.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> box.zuizhuai.cn:88宁波VIP
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://nas.zuizhuai.cn/">
<span>Nas—需先打开</span>
<a href="http://nas.zuizhuai.cn/" target="_blank">
<i class="fas fa-external-link-alt"></i> nas.zuizhuai.cn:80宁波VIP
</a>
<span class="status-badge"></span>
</li>

<li data-url="http://3.jiyun.net/">
<span>三丰云</span>
<a href="http://3.jiyun.net/" target="_blank">
<i class="fas fa-external-link-alt"></i> 三丰云永久
</a>
<span class="status-badge"></span>
</li>

</ul>
<div class="notice">
<i class="fas fa-info-circle"></i> 部分网络屏蔽受阻,打不开请使用梯子访问!
</div>
</main>
<footer class="footer">
<p>&copy; 2024 fim@qq.com 。检测绑定域名站打开情况。<a href="http://nas.zuizhuai.cn/" target="_blank">更新说明</a></p>
</footer>
</div>

<script>
function checkUrl(url) {
return new Promise((resolve, reject) => {
fetch(url, { mode: 'no-cors', method: 'HEAD' })
.then(() => resolve(true))
.catch(() => resolve(false));
});
}

function updateUrlStatus(li, isAccessible) {
const statusBadge = li.querySelector('.status-badge');
if (isAccessible) {
li.classList.remove('disabled');
statusBadge.textContent = ' 正常 ';
statusBadge.className = 'status-badge status-normal';
} else {
li.classList.add('disabled');
statusBadge.textContent = ' 无法访问 ';
statusBadge.className = 'status-badge status-error';
}
}

async function checkAllUrls() {
const urlList = document.getElementById('url-list');
const listItems = urlList.querySelectorAll('li');

for (const li of listItems) {
const url = li.dataset.url;
const isAccessible = await checkUrl(url);
updateUrlStatus(li, isAccessible);
}
}

// 初始检查
checkAllUrls();

// 每 5 分钟检查一次
setInterval(checkAllUrls, 5 * 60 * 1000);
</script>
</body>
</html>

 

 

打赏
谢谢谅解上文的粗糙,允许转载,请注明转载地址:Puo's 菜园子 » 我的绑定域名网站检测引导页
分享到

评论 抢沙发

做一个好的个人学习园地

主要网建,域名、集装箱物流、生活方法论的学习及研究,整理等内容

我的原创博客-忆秋年Puo's菜园子-我的学习园地

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续提供更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫

微信扫一扫

登录

找回密码

注册