-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
25 lines (20 loc) · 734 Bytes
/
script.js
File metadata and controls
25 lines (20 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const hero = document.querySelector('.hero');
const text = hero.querySelector('h1');
const walk = 100;
function shadow(e) {
const { offsetWidth: width, offsetHeight: height } = hero;
let { offsetX: x, offsetY: y} = e;
if (this !== e.target) {
x += e.target.offsetLeft;
y += e.target.offsetTop;
}
const xWalk = Math.round((x / width * walk) - (walk / 2));
const yWalk = Math.round((y / height * walk) - (walk / 2));
text.style.textShadow = `
${xWalk}px ${yWalk}px 0 rgba(255,0,255,0.7),
${xWalk * -1}px ${yWalk}px 0 rgba(139,17,47,0.6),
${yWalk}px ${xWalk * -1}px 0 rgba(15,32,44,0.3),
${yWalk * -1}px ${xWalk * -1}px 0 rgba(142,98,104,0.8)
`;
}
hero.addEventListener('mousemove', shadow);