Substack:阅读进度条
在页面顶部添加一条细进度条,显示已阅读文章的比例。
可复制的代码
// Reading-progress bar at the top of the page, tied to the post body
(function () {
if (document.getElementById('jz-sub-progress')) { return; }
var bar = document.createElement('div');
bar.id = 'jz-sub-progress';
bar.style.cssText = 'position:fixed;top:0;left:0;height:3px;width:0;background:#ff6719;z-index:99999;transition:width 90ms linear;';
document.documentElement.appendChild(bar);
function root() {
return document.querySelector('.body.markup, .available-content, [class*="postBody"]');
}
function update() {
var r = root(); if (!r) { bar.style.width = '0'; return; }
var rect = r.getBoundingClientRect();
var total = rect.height + window.innerHeight * 0.4;
var seen = Math.min(total, Math.max(0, window.innerHeight - rect.top));
var pct = Math.min(100, Math.max(0, (seen / total) * 100));
bar.style.width = pct + '%';
}
update();
window.addEventListener('scroll', update, { passive: true });
window.addEventListener('resize', update);
})();
如何使用此示例
- 用上方按钮复制代码。
- 安装 JustZix(2 分钟),在目标页面打开扩展。
- 添加一条匹配该页面的新规则。
- 将代码粘贴到规则的 JavaScript 面板并保存 — 每次访问页面时都会运行。
为此示例评分
暂无评分 — 成为第一个。