解决甘特图中里程碑重叠的问题 - myhexin.com

2023/10/20 11:22:16

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @license MIT
// @name        解决甘特图中里程碑重叠的问题 - myhexin.com
// @namespace   Violentmonkey Scripts
// @match       http://cf.myhexin.com/pages/viewpage.action
// @grant       none
// @version     1.0
// @author      -
// @description 2023/10/20 11:22:16
// ==/UserScript==
window.onload = () => {
  document.querySelectorAll('.heading-expand-body').forEach((container) => {
  [...container.querySelectorAll('.roadmap-macro-view >svg >g >g:nth-child(3) text')]
   .sort((a, b) => a.getAttribute('x') - b.getAttribute('x')).forEach((it, idx) => it.style = `transform:translateY(${(idx%3-1) * 20}px)`)
  })
}