B
Size: a a a
B
N
B
N
B
N
N
N
B
N
B
CM
B
N
EG
const el = document.createElement('div')
el.style.position = 'absolute'
el.style.background = '#ccc'
el.style.width = '100px'
el.style.height = '40px'
const wrap = document.querySelector('.demo-theme-dark')
wrap.append(el)
const paths = document.querySelectorAll('.demo-theme-dark path')
paths.forEach((path) => {
if (path.tagName === 'PATH') {
path.addEventListener('mouseover', () => {
el.innerHTML = path.getAttribute('aria-label').trim()
})
}
})
DE
N
EG
EG