mirror of
https://github.com/tchartron/blow
synced 2025-04-04 06:46:01 +00:00
1 line
No EOL
920 B
JavaScript
1 line
No EOL
920 B
JavaScript
function activeTocItem(){var e=window.scrollY;console.log(e)}function findCorrespondingTocTitle(t){return[...document.querySelectorAll("#toc li a")].find(e=>e.href.substring(e.href.indexOf("#"))==="#"+t.id)}document.addEventListener("DOMContentLoaded",function(){document.getElementById("navbar").clientHeight,document.getElementById("toc");var e=document.querySelectorAll("#toc li a");document.getElementById("page-content");window.addEventListener("scroll",activeTocItem);const t=new window.IntersectionObserver(e=>{e.forEach(t=>{if(t.isIntersecting){console.log(t,"active");let e=findCorrespondingTocTitle(t.target);console.log(e),e.classList.add("bg-blue-800")}else console.log(t,"inactive"),t.target.classList.remove("bg-blue-800")})},{root:null,threshold:.1});var o=[];[...e].forEach(e=>{o.push(e.href.substring(e.href.indexOf("#")))});const n=document.querySelectorAll(o.join(","));n.forEach(e=>{t.observe(e)})}); |