所属分类: 网页特效-其它&杂项 2023-11-26 11:19:00
let toolTip = document.getElementById('tooltip'); window.addEventListener('mousemove', toolTipXY); function toolTipXY(e) { let x = e.clientX, y = e.clientY; toolTip.style.top = (y + 20) + 'px'; toolTip.style.left = (x + 20) + 'px'; };