-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdemo.js
139 lines (122 loc) · 5.78 KB
/
demo.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
const body = document.body;
const docEl = document.documentElement;
const lineEq = (y2, y1, x2, x1, currentVal) => {
// y = mx + b
var m = (y2 - y1) / (x2 - x1), b = y1 - m * x1;
return m * currentVal + b;
};
const lerp = (a,b,n) => (1 - n) * a + n * b;
const distance = (x1,x2,y1,y2) => {
var a = x1 - x2;
var b = y1 - y2;
return Math.hypot(a,b);
};
const getMousePos = (e) => {
let posx = 0;
let posy = 0;
if (!e) e = window.event;
if (e.pageX || e.pageY) {
posx = e.pageX;
posy = e.pageY;
}
else if (e.clientX || e.clientY) {
posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
}
return { x : posx, y : posy }
}
// Window size
let winsize;
const calcWinsize = () => winsize = {width: window.innerWidth, height: window.innerHeight};
calcWinsize();
window.addEventListener('resize', calcWinsize);
// The feDisplacementMap element
const feDisplacementMapEl = document.querySelector('feDisplacementMap');
class Menu {
constructor() {
this.DOM = {
// The SVG element
svg: document.querySelector('svg.distort'),
// The menu element
menu: document.querySelector('nav.menu')
};
// The images (one per menu link)
this.DOM.imgs = [...this.DOM.svg.querySelectorAll('g > image')];
// The menu links
this.DOM.menuLinks = [...this.DOM.menu.querySelectorAll('.menu__link')];
// Mouse position
this.mousePos = {x: winsize.width/2, y: winsize.height/2};
// Last mouse positions (one to consider for the image translation movement, another for the scale value of the feDisplacementMap element)
this.lastMousePos = {
translation: {x: winsize.width/2, y: winsize.height/2},
displacement: {x: 0, y: 0}
};
// feDisplacementMap scale value
this.dmScale = 0;
// Current menu link position
this.current = -1;
this.initEvents();
requestAnimationFrame(() => this.render());
}
initEvents() {
// Update mouse position
window.addEventListener('mousemove', ev => this.mousePos = getMousePos(ev));
this.DOM.menuLinks.forEach((item, pos) => {
// Create spans for each letter
charming(item);
const letters = [...item.querySelectorAll('span')];
const mouseenterFn = () => {
// Hide the previous menu image.
if ( this.current !== -1 ) {
TweenMax.set(this.DOM.imgs[this.current], {opacity: 0});
}
// Update current.
this.current = pos;
// Now fade in the new image if we are entering the menu or just set the new image's opacity to 1 if switching between menu items.
if ( this.fade ) {
TweenMax.to(this.DOM.imgs[this.current], 0.5, {ease: Quad.easeOut, opacity: 1});
this.fade = false;
}
else {
TweenMax.set(this.DOM.imgs[this.current], {opacity: 1});
}
// Letters effect
TweenMax.staggerTo(letters, 0.2, {
ease: Sine.easeInOut,
y: this.lastMousePos.translation.y < this.mousePos.y ? 30 : -30,
startAt: {opacity: 1, y: 0},
opacity: 0,
yoyo: true,
yoyoEase: Back.easeOut,
repeat: 1,
stagger: {
grid: [1,letters.length-1],
from: 'center',
amount: 0.12
}
});
};
item.addEventListener('mouseenter', mouseenterFn);
});
const mousemenuenterFn = () => this.fade = true;
const mousemenuleaveFn = () => TweenMax.to(this.DOM.imgs[this.current], .2, {ease: Quad.easeOut, opacity: 0});
this.DOM.menu.addEventListener('mouseenter', mousemenuenterFn);
this.DOM.menu.addEventListener('mouseleave', mousemenuleaveFn);
}
render() {
// Translate the image on mousemove
this.lastMousePos.translation.x = lerp(this.lastMousePos.translation.x, this.mousePos.x, 0.2);
this.lastMousePos.translation.y = lerp(this.lastMousePos.translation.y, this.mousePos.y, 0.2);
this.DOM.svg.style.transform = `translateX(${(this.lastMousePos.translation.x-winsize.width/2)}px) translateY(${this.lastMousePos.translation.y-winsize.height/2}px)`;
// Scale goes from 0 to 50 for mouseDistance values between 0 to 140
this.lastMousePos.displacement.x = lerp(this.lastMousePos.displacement.x, this.mousePos.x, 0.1);
this.lastMousePos.displacement.y = lerp(this.lastMousePos.displacement.y, this.mousePos.y, 0.1);
const mouseDistance = distance(this.lastMousePos.displacement.x, this.mousePos.x, this.lastMousePos.displacement.y, this.mousePos.y);
this.dmScale = Math.min(lineEq(50, 0, 140, 0, mouseDistance), 50);
feDisplacementMapEl.scale.baseVal = this.dmScale;
requestAnimationFrame(() => this.render());
}
}
new Menu();
}