首页
源码插件
代码笔记
精品资源
美图音乐
点滴记忆
关于博主
友情链接
搜索
搜索
热门搜索
分享一个简约导航网站单页| blog.qqzzz.cn
莱卡云2025年5月促销活动来袭| Lcayun.com
BingGan
她说爱你,没说只爱你!
累计撰写
99
篇文章
累计收到
53
条评论
首页
导航
首页
源码插件
代码笔记
精品资源
美图音乐
点滴记忆
关于博主
友情链接
旗下站点
Bg‖ 在线音乐
Bg‖ Mail邮件
Bg‖ SEO外链
源码分享
2025-5-19
分享一个简约导航网站单页| blog.qqzzz.cn
一个简约的网站导航源码单页,直接新建index.html 把下方源码粘贴进去修改保存即可。 <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>导航网站 -blog.qqzzz.cn</title> <meta name="keywords" content="双虹云博客"> <meta name="description" content="双虹云博客。"> <meta name="author" content="导航网站"> <meta name="robots" content="index,follow"> <meta property="og:title" content="导航网站 - "> <meta property="og:description" content="双虹云。"> <meta property="og:type" content="website"> <link rel="icon" href="https://blog.qqzzz.cn/favicon.ico" type="image/x-icon"> <link rel="shortcut icon" href="https://blog.qqzzz.cn/favicon.ico" type="image/x-icon"> <style> /* 基础样式 */ * { margin: 0; padding: 0; box-sizing: border-box; } /* 主体样式 */ body { background: #f0f2f5; font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif; margin: 0; padding: 0; min-height: 100vh; overflow-x: hidden; position: relative; display: flex; flex-direction: column; } /* 容器样式 */ .container { max-width: 1200px; margin: 0 auto; padding: 20px; flex: 1; display: flex; flex-direction: column; align-items: center; width: 100%; } /* 主盒子样式 */ .main-box { background: white; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); border-radius: 24px; border: 1px solid #e9ecef; width: 100%; max-width: 1000px; padding: 30px; margin: 0 auto 15px; transition: all 0.3s ease; position: relative; z-index: 2; } .main-box:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); } /* 头部样式 */ .header { text-align: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); } .header h1 { font-size: 32px; background: linear-gradient(120deg, #2b5876 0%, #4e4376 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 15px; } /* 提示框样式 */ .notice { background: transparent; padding: 0 25px; border-radius: 12px; margin-bottom: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .notice p { color: #4facfe; font-size: 16px; line-height: 1; font-weight: bold; letter-spacing: 0.5px; margin: 0; } /* 流量卡领取样式 */ .flow-card, .flow-card-top { background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%); box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1); border-radius: 12px; padding: 10px 15px; margin-bottom: 10px; text-align: center; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; } .flow-card::before, .flow-card-top::before { content: ''; position: absolute; top: -10px; right: -10px; width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; } .flow-card .text-content, .flow-card-top h3 { flex: 1; text-align: left; color: #ffffff; font-size: 16px; margin: 0; } .flow-card h2 { color: #ffffff; font-size: 18px; margin-bottom: 4px; font-weight: 600; } .flow-card p { color: rgba(255, 255, 255, 0.9); font-size: 14px; margin-bottom: 0; } .flow-card a, .flow-card-top a { display: inline-block; background: #ffffff; color: #2b5876; padding: 8px 0; border-radius: 50px; font-size: 15px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); margin: 0 5px; white-space: nowrap; width: 110px; text-align: center; } /* 所有按钮统一样式 */ .flow-card .buttons a, .flow-card-top .buttons a { background: #ffffff; color: #2b5876; } .flow-card .buttons a:hover, .flow-card-top .buttons a:hover { background: #f8f9fa; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); } .flow-card .buttons, .flow-card-top .buttons { display: flex; align-items: center; justify-content: flex-end; flex-wrap: nowrap; } .flow-card a:hover, .flow-card-top a:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); background: #f8f9fa; } .flow-card-top { margin-bottom: 10px; } /* 导航网格样式 */ .nav-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; width: 100%; margin: 0 auto; padding: 0; } /* 导航项样式 */ .nav-item { background: hsl(230, 10%, 33%); border-radius: 12px; padding: 12px; text-align: center; box-shadow: none; transition: all 0.3s ease; min-height: 75px; position: relative; } .nav-item:hover { transform: none; background: hsl(230, 10%, 38%); } .nav-item a { text-decoration: none; color: inherit; display: block; text-align: center; } .nav-item h3 { color: #ffffff; font-size: 17px; margin-bottom: 8px; } .nav-item p { color: rgba(255, 255, 255, 0.9); font-size: 16px; margin-bottom: 4px; } .nav-item .status { position: absolute; bottom: -20px; left: 0; right: 0; color: #ff6b6b; font-size: 12px; text-align: center; font-weight: 500; } /* 底部导航样式 */ .float-nav { display: none; } @media (max-width: 768px) { body { padding-bottom: 20px; } .container { padding: 10px; } .main-box { padding: 15px; margin: 5px; } .header { margin-bottom: 15px; padding-bottom: 10px; } .nav-grid { gap: 15px; } .flow-card, .flow-card-top { padding: 12px; margin-bottom: 10px; flex-direction: column; } .flow-card .text-content, .flow-card-top h3 { text-align: center; margin-bottom: 12px; font-size: 16px; } .flow-card h2 { font-size: 16px; margin-bottom: 5px; text-align: center; } .flow-card p { font-size: 13px; text-align: center; padding: 0 5px; } .flow-card a, .flow-card-top a, .flow-card .buttons a, .flow-card-top .buttons a { padding: 7px 0; font-size: 14px; margin: 0 4px; width: 95px; text-align: center; background: #ffffff; color: #2b5876; } .flow-card .buttons, .flow-card-top .buttons { justify-content: center; width: 100%; margin-top: 5px; } .nav-item { padding: 12px; min-height: 70px; width: 100%; } .header h1 { font-size: 24px; } .notice p { font-size: 14px; } .copyright { padding: 10px 0; font-size: 12px; } } /* 版权信息样式 */ .copyright { text-align: center; padding: 15px 0; color: #6c757d; font-size: 13px; letter-spacing: 0.5px; width: 100%; max-width: 1200px; margin: 0 auto; } /* 弹窗样式 */ .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; justify-content: center; align-items: center; z-index: 10000; } .modal { background: white; border: 1px solid #e9ecef; padding: 25px; border-radius: 15px; width: 90%; max-width: 320px; text-align: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); } .modal h2 { color: #2b5876; margin-bottom: 20px; font-size: 20px; font-weight: bold; } .modal p { color: #6c757d; margin-bottom: 25px; font-size: 16px; line-height: 1.8; } .modal button { background: #ffffff; border: none; color: #2b5876; padding: 10px 40px; border-radius: 50px; font-size: 16px; cursor: pointer; transition: all 0.3s ease; font-weight: 600; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .modal button:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); background: #f8f9fa; } </style> </head> <body> <div class="container"> <div class="main-box"> <div class="header"> <h1>网址导航</h1> <div class="notice"> <p></p> </div> </div> <!-- 流量卡领取 --> <div class="flow-card"> <div class="text-content"> <h2>🎁一号店铺免费流量卡领取🎁</h2> <p>全国通用流量卡,每月仅19-39元起,80G-200GB超大流量,无限速!</p> </div> <div class="buttons"> <a href="https://172.lot-ml.com/ProductEn/Index/4e9215cbe8c3a4ba" target="_blank">立即领取</a> <a href="https://haoka.-ml.com/plugreg.html?agentid=10147" target="_blank">免费开通代理</a> </div> </div> <div class="flow-card"> <div class="text-content"> <h2>🎁二号店铺免费流量卡领取🎁</h2> <p>全国通用流量卡,每月仅19-39元起,80G-200GB超大流量,无限速!</p> </div> <div class="buttons"> <a href="https://h5.gao.com/url?value=yQKCu1743343994" target="_blank">立即领取</a> <a href="https://h5.gantanhao.com/url?value=Cgzla1743395118452" target="_blank">免费开通代理</a> </div> </div> <div class="nav-grid"> <!-- 导航项目1 --> <div class="nav-item"> <a href="javascript:void(0)" onclick="copyAndRedirect('www.baidu.cn', 'http://www.udg.cc')"> <h3>我爱代挂</h3> <p class="url">WWW.UDG.CC</p> <p class="status">全站暂停下单和续费</p> </a> </div> <!-- 导航项目2 --> <div class="nav-item"> <a href="javascript:void(0)" onclick="copyAndRedirect('www.nsss.cc', 'http://www.nsss.cc')"> <h3>我爱云代挂</h3> <p class="url">WWW.NSSS.CC</p> <p class="status">全站暂停下单和续费</p> </a> </div> <!-- 导航项目3 --> <div class="nav-item"> <a href="javascript:void(0)" onclick="copyAndRedirect('www.qqmz.cc', 'http://www.qqmz.cc')"> <h3>QQ秒赞</h3> <p>WWW.QQMZ.CC</p> </a> </div> <!-- 导航项目4 --> <div class="nav-item"> <a href="javascript:void(0)" onclick="copyAndRedirect('www.zpo.cc', 'http://www.zpo.cc')"> <h3>导航网站</h3> <p>WWW.ZPO.CC</p> </a> </div> </div> </div> </div> <div class="copyright"> Copyright © 2025 All Rights Reserved </div> <!-- 弹窗 --> <div class="modal-overlay" id="welcomeModal"> <div class="modal"> <h2>网站公告</h2> <p>QQ代挂全面停止新增和续费<br>老用户不受影响可正常操作</p> <button onclick="closeModal()">OK</button> </div> </div> <script> // 定义提示词 const NOTICE_TEXT = "请收藏本导航站防止丢失,方便下次访问!"; // 页面加载时设置提示词 window.onload = function() { // 置提示词 document.querySelector('.notice p').textContent = NOTICE_TEXT; // 查弹窗显示 checkModalDisplay(); }; // 检查弹窗显示次数 function checkModalDisplay() { // 获取当前显示次数 let modalCount = localStorage.getItem('modalDisplayCount') || 0; modalCount = parseInt(modalCount); // 如显示数小于2次,显示弹窗并增加计数 if (modalCount < 2) { document.getElementById('welcomeModal').style.display = 'flex'; localStorage.setItem('modalDisplayCount', modalCount + 1); } else { document.getElementById('welcomeModal').style.display = 'none'; } } // 关闭弹窗 function closeModal() { document.getElementById('welcomeModal').style.display = 'none'; } // 复制本到贴板并跳转 function copyAndRedirect(text, url) { // 创建临时输入框 const input = document.createElement('input'); input.value = text; document.body.appendChild(input); input.select(); document.execCommand('copy'); document.body.removeChild(input); // 跳转到目标网址 window.open(url, '_blank'); } </script> </body> </html>
2025年-5月-19日
80 阅读
0 评论
源码分享
2025-3-10
吾爱破解论坛2025年3月13日十七周年开放注册公告
Who Are We 吾爱破解论坛从2008年3月13日建立以来,陪伴众多坛友走过了17年艰辛而辉煌的风雨历程,以带领新手走入密界大门为基础,汇集了一大批爱好者在此栖息,今天我们依然不忘初心,希望起到承上启下的作用,带领爱好者们走入密界的圣殿。 开放注册时间 为了避免由开放注册带来的负面影响,我们将加强对新注册用户的管理。对于发现有马甲或者新注册用户从事违规行为的情况,我们会采取更加严格的处理措施。在您注册前,请认真阅读注册须知以及社区的总版规,以便更好地适应和享受我们的社区,具体限时开放注册时间如下: 2025年3月13日 12:00-- 14:00 和 20:00 -- 22:00 官方论坛: www.52pojie.cn
2025年-3月-10日
216 阅读
0 评论
源码分享
2024-12-10
情侣小站恋爱主题源码LikeGirl 5.2.0最终版本
源码说明: LikeGirl是一款基于PHP开发的情侣恋爱主题源码 经过作者多次更新和优化,情侣小站现已正式定版为 v5.2.0 此开源版本将成为项目的最终版本。 安装说明: Nginx+php7.3+mysql5.6 1.上传源码压缩包至网站目录并解压 2.打开根目录下的admin文件夹 3.接着找到Config_DB.php文件 打开后按注释提示更改为你的数据库相关信息 4.请认真填写安全码 尽量设置的复杂难以猜测/ 修改密码等敏感信息需输入安全码 5.把压缩包中的sql上传到数据库即可,默认账号密码都是admin
2024年-12月-10日
1299 阅读
8 评论
源码分享
2024-6-23
最新彩虹易支付前端首页模板美化源码
操作非常简单,上传源码到/template进行。 然后去后台切换模板,选择刚刚上传的即可。
2024年-6月-23日
1119 阅读
0 评论
源码分享
2024-5-28
一款基于Typecho的博客主题|WaterDrop主题模板
WaterDrop主题属于一个简约且普通的写作主题,主要是用来记录自己的各种图文并茂的技术文章、经验心得以及产品文档用的,后期理论不会加入各种除了酷炫,没有多少实际用途的花哨组件,如果你也是技术人员,目的就是为了作为产品文档或者记录经验心得,它应该也会适合你!
2024年-5月-28日
665 阅读
0 评论
源码分享
2024-5-25
引流宝活码管理平台系统源码-支持群活码、淘宝客、分享卡片、短网址等
引流宝全新功能活码管理平台系统源码-支持群活码、淘宝客、分享卡片、短网址等。
2024年-5月-25日
414 阅读
0 评论
源码分享
2024-5-20
萌新源API管理系统PHP源码
萌新源API管理系统是一款基于layui和pear-Admin-layui前端框架,以及thinkphp后端框架开发的API管理后台系统。
2024年-5月-20日
581 阅读
1 评论
源码分享
2024-5-19
微信公众号多域名回调系统v1.5独立版
源码介绍: 该程序是基于thinkphp6.0开发的微信公众号多域名回调系统。 主要解决微信公众号后台默认只能授权2个网页域名,用本系统可突破这个限制,用同一个公众号对接无限多个网站。网站后台支持回调域名白名单的管理,以及登录记录的查看。 安装说明: ①:上传程序至网站目录,设置网站运行目录为public ②:伪静态规则设置为thinkphp ③: 运行环境要求PHP7.4+,MySQL5.6+ 完事后访问域名会自动跳转到安装页面,根据提示进行操作 后台路径 http://域名/admin
2024年-5月-19日
414 阅读
0 评论
源码分享
2024-5-14
Typecho程序|BeaconNav导航主题模板
Typecho是一个基于PHP开发的简单、轻量、易用的博客系统,而本主题又是基于Typecho开发的导航主题,作者将其命名为BeaconNav。Beacon是灯塔的意思,正如作者开发该主题的初衷,希望使用者在知识的海洋里也能能够如同有灯塔指引一样目标明确,永远不会迷失方向。
2024年-5月-14日
299 阅读
0 评论
源码分享
2024-5-11
小猫咪在线邮件发件程序PHP源码
一款免登录发送邮件,支持在线发送附件,后台可设置邮件发送功能,前台可选择发送邮箱附件 无需数据库。 网站数据采取本地保存,所以使用前请给网站修改权限,否则很多功能将无法使用。
2024年-5月-11日
314 阅读
0 评论
源码分享
2024-5-10
搏天短网址链接生成系统网站源码
短网址系统前两年还是比较流行的,随着各种原因也有不少都gg了,既想拥有一个稳定又好用的短网址系统只有自己搭建了,后台简洁适合自用。
2024年-5月-10日
533 阅读
1 评论
源码分享
2024-5-9
墨星拟态个人引导页v3.0版本
随着应用功能越来越多,繁多而详细的功能使用和说明文档,已经不能满足时代追求 快速 的需求,而 引导页(或分步引导) 本质就是 化繁为简,将核心功能以更简单、简短、明了的文字指引用户去使用对应的功能,特别是 ToB 的项目,各种新功能需求迭代非常快,免不了需要 引导页 的功能来快速帮助用户引导。
2024年-5月-9日
762 阅读
1 评论
源码分享
2024-5-4
Emlog文章内容评论可见下载插件
该款插件可以给文章页面内容添加隐藏内容,插件目前支持登录登录下载/评论下载/输入密码下载/微信公众号下载以及登录后评论下载。 插件设置页面可自行设置下载样式/微信公众号隐藏设置/快捷跳转等。
2024年-5月-4日
424 阅读
2 评论
源码分享
2024-4-30
CoreNext主题1.5.2免授权|WordPress程序模板
v1.5.2 新增本地头像系统,开启后直接调用本地头像。 重写网站SEO功能。 调整作者边栏动态排序内容。 调整文章引用内容界面。
2024年-4月-30日
592 阅读
1 评论
源码分享
2024-4-29
OneTool多平台私人助手PHP源码开心版
OneTool私人助手大家都不陌生,官方最新版1.9.1 今天这里分享一款开心版,可以帮助用户快速完成各种任务,该应用还拥有其它特色功能,有兴趣的小伙伴们搭建出来测试一下即可。
2024年-4月-29日
938 阅读
6 评论
源码分享
2024-4-29
在线分析蜘蛛日志工具源码
服务器环境需是Linux宝塔面板,登录宝塔面板之后点击左边侧边栏 ‘文件’ 然后再根目录www/wwwlogs/里面找到你想查看的站点日志。
2024年-4月-29日
527 阅读
0 评论
源码分享
1
2