显卡检测GPU-Z v2.65.1中文汉化版
产品介绍
TechPowerUp GPU-Z,显卡检测神器,知名显卡识别软件。GPU-Z是个检测显卡的工具,提供关于显卡和图形处理器的重要信息。GPU-Z原生单执行文件,自带启动向导,绿色便携免安装,界面直观,运行后即可显示GPU核心,以及运行频率、带宽等工艺参数信息,如同CPU-Z一样,这也是款必备硬件检测工具。
产品截图

TechPowerUp GPU-Z,显卡检测神器,知名显卡识别软件。GPU-Z是个检测显卡的工具,提供关于显卡和图形处理器的重要信息。GPU-Z原生单执行文件,自带启动向导,绿色便携免安装,界面直观,运行后即可显示GPU核心,以及运行频率、带宽等工艺参数信息,如同CPU-Z一样,这也是款必备硬件检测工具。

始于上世纪90年代并且一直在稳定更新的老牌硬件分析及监控工具HWiNFO ,针对个人及非商业用途免费。自从7.20版推出中文版以来,经过几个版本的改进,中文愈发准确。适合电脑系统中使用的系统信息监测工具,HWiNFO可以显示出处理器、主板及芯片组、pcmcia接口、bios版本、内存等信息。HWiNFO(64位)还可以给用户全面展示计算机的硬件信息以及性能。


Chatbox AI 是一款 AI 客户端应用和智能助手,支持众多先进的 AI 模型和 API,可在 Windows、MacOS、Android、iOS、Linux 和网页版上使用。


<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>时间进度侧边栏</title>
<style>
:root {
--sidebar-bg: #f5f7fa;
--text-primary: #2c3e50;
--progress-bg: #e0e0e0;
--progress-fill: #3498db;
}
.j-date {
width: 280px;
padding: 20px;
background: var(--sidebar-bg);
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
font-family: 'Segoe UI', system-ui;
}
.progress-item {
margin: 18px 0;
}
.progress-title {
font-weight: 600;
color: var(--text-primary);
margin-bottom: 6px;
}
.progress-text {
font-size: 0.9em;
color: #666;
margin-bottom: 8px;
}
.progress-bar {
height: 8px;
background: var(--progress-bg);
border-radius: 4px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: var(--progress-fill);
border-radius: 4px;
transition: width 0.5s ease;
}
.progress-percent {
float: right;
font-size: 0.85em;
color: #7f8c8d;
}
/* 新增底部时间样式 */
.time-footer {
margin-top: 25px;
padding-top: 15px;
border-top: 1px solid #eee;
text-align: center;
font-size: 0.95em;
}
#current-time {
color: var(--text-primary);
font-weight: 500;
}
#current-time span {
color: #e74c3c;
letter-spacing: 0.5px;
}
</style>
</head>
<body>
<!-- 原有进度条模块 -->
<div class="progress-item">
<div class="progress-title">本周进度</div>
<div class="progress-text" id="week-text"></div>
<div class="progress-bar">
<div class="progress-fill" id="week-progress"></div>
</div>
<span class="progress-percent" id="week-percent"></span>
</div>
<div class="progress-item">
<div class="progress-title">本月进度</div>
<div class="progress-text" id="month-text"></div>
<div class="progress-bar">
<div class="progress-fill" id="month-progress"></div>
</div>
<span class="progress-percent" id="month-percent"></span>
</div>
<div class="progress-item">
<div class="progress-title">本年进度</div>
<div class="progress-text" id="year-text"></div>
<div class="progress-bar">
<div class="progress-fill" id="year-progress"></div>
</div>
<span class="progress-percent" id="year-percent"></span>
</div>
<div class="progress-item">
<div class="progress-title">今日进度</div>
<div class="progress-text" id="day-text"></div>
<div class="progress-bar">
<div class="progress-fill" id="day-progress"></div>
</div>
<span class="progress-percent" id="day-percent"></span>
</div>
<!-- 新增底部时间模块 -->
<div class="time-footer">
<div id="current-time"></div>
</div>
<script>
// 时间格式化函数
function formatTime(date) {
return date.toLocaleString('zh-CN', {
year: 'numeric',
month: '2-digit',
day: '2-digit',
hour12: false,
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
}).replace(/\//g, '月').replace('日', '号').replace(' ', ' ');
}
// 修正后的周进度计算
function calculateWeekProgress(now) {
const tempDate = new Date(now);
const day = tempDate.getDay();
const diffToMonday = day === 0 ? 6 : day - 1;
const monday = new Date(tempDate);
monday.setDate(tempDate.getDate() - diffToMonday);
monday.setHours(0, 0, 0, 0);
const nextMonday = new Date(monday);
nextMonday.setDate(monday.getDate() + 7);
return (now - monday) / (nextMonday - monday);
}
function updateProgress() {
const now = new Date();
// 更新时间显示
document.getElementById('current-time').innerHTML =
`当前时间:<span>${formatTime(now)}</span>`;
// 进度计算
const weekProgress = calculateWeekProgress(now);
const monthDays = new Date(now.getFullYear(), now.getMonth() + 1, 0).getDate();
const monthProgress = (now.getDate() - 1 + now.getHours() / 24) / monthDays;
const yearStart = new Date(now.getFullYear(), 0, 1);
const yearEnd = new Date(now.getFullYear() + 1, 0, 1);
const yearProgress = (now - yearStart) / (yearEnd - yearStart);
const dayProgress = (now.getHours() * 3600 + now.getMinutes() * 60 + now.getSeconds()) / 86400;
// 更新进度条
updateElement('week', weekProgress, Math.floor(weekProgress * 7), 7 - Math.floor(weekProgress * 7));
updateElement('month', monthProgress, now.getDate(), monthDays - now.getDate());
updateElement('year', yearProgress, Math.ceil(yearProgress * 365), 365 - Math.ceil(yearProgress * 365));
updateElement('day', dayProgress, now.getHours(), 24 - now.getHours());
}
function updateElement(type, progress, passed, remaining) {
document.getElementById(`${type}-text`).textContent =
`已过去 ${passed} ${type === 'day' ? '小时' : '天'},剩余 ${remaining} ${type === 'day' ? '小时' : '天'}`;
document.getElementById(`${type}-progress`).style.width =
`${Math.min(100, (progress * 100).toFixed(2))}%`;
document.getElementById(`${type}-percent`).textContent =
`${(progress * 100).toFixed(1)}%`;
}
// 每秒更新
setInterval(updateProgress, 1000);
updateProgress();
</script>
</body>
</html>
XYplorers是一款多标签文件管理器,支持多标签页栏,浏览文件管理时就跟使用Chrome之类的浏览器感觉一般,从浏览方便性,和切换滑顺程度,要比原本Windows10的Explorer文件管理器要得多。可以大部分程度上替代系统自带的文件管理器。同时,有浏览器快捷键和鼠标快捷。

1 主题需要修改的文件
你的网站目录/content/templates/simply/module.php
2 找到注释 侧边栏:最新微语 如下图示

将 <img src="<?= $avatar ?>" alt="<?= $author ?>"> 修改为 <img src="<?= BLOG_URL,$avatar ?>" alt="<?= $author ?>">
保存,前往你网站的文章页面刷新,查看微语模块,头像就显示出来啦~