startseite/scripts
mcmrcs@proton.me fe84bb95d9
All checks were successful
Deploy Blog / build (push) Successful in 16s
bugfix: fix readme script
2024-06-02 18:31:23 +01:00
..
readme.js bugfix: fix readme script 2024-06-02 18:31:23 +01:00

document.querySelectorAll("div.article").forEach((el) => {
  el.parentElement.onmouseover = function (e) {
    const target = e.target
    const child = target.querySelector(".blinking")
    if (child != null) {
      child.style.display = "block"
    }
  }
})

document.querySelectorAll("div.article").forEach((el) => {
  el.parentElement.onmouseleave = function (e) {
    const target = e.target
    const child = target.querySelector(".blinking")
    if (child != null) {
      child.style.display = "none"
    }
  }
})