-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
123 lines (91 loc) · 3.24 KB
/
script.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
let firstContainer = document.querySelector(".first-container");
let bigIcon = 'scale(1.4) translateY(-1.5vw)';
let middleIcon = 'scale(1.2) translateY(-1vw)';
let smallIcon = 'scale(1.1) translateY(-0.5vw)';
let normalIcon = 'scale(1) translateY(0)';
let icons = document.querySelectorAll('.icon');
icons.forEach((item, index) => {
// hover icon
icons[index].addEventListener('mouseover', function(ePC) {
// medium
let next1 = index + 1;
let prima1 = index - 1;
// small
let next2 = index + 2;
let prima2 = index - 2;
firstContainer.style.gap = '0.8vw';
if (ePC.target == icons[0]) {
// normal
this.style.transform = bigIcon;
// medium
icons[next1].style.transform = middleIcon;
// small
icons[next2].style.transform = smallIcon;
} else if (ePC.target == icons[icons.length - 1]) {
// normal
this.style.transform = bigIcon;
// medium
icons[prima1].style.transform = middleIcon;
// small
icons[prima2].style.transform = smallIcon;
} else {
// normal
this.style.transform = bigIcon;
// medium
icons[prima1].style.transform = middleIcon;
icons[next1].style.transform = middleIcon;
// small
icons[prima2].style.transform = smallIcon;
icons[next2].style.transform = smallIcon;
}
});
// not hover icon
icons[index].addEventListener('mouseout', function() {
icons.forEach((item1, hideIndex) => {
icons[hideIndex].style.transform = normalIcon;
});
firstContainer.style.gap = '0vw';
});
/*****************************************************************/
// hover icon
icons[index].addEventListener('touchmove', function(eMobile) {
// medium
let next1 = index + 1;
let prima1 = index - 1;
// small
let next2 = index + 2;
let prima2 = index - 2;
firstContainer.style.gap = '0.8vw';
if (eMobile.target == icons[0]) {
// normal
this.style.transform = bigIcon;
// medium
icons[next1].style.transform = middleIcon;
// small
icons[next2].style.transform = smallIcon;
} else if (eMobile.target == icons[icons.length - 1]) {
// normal
this.style.transform = bigIcon;
// medium
icons[prima1].style.transform = middleIcon;
// small
icons[prima2].style.transform = smallIcon;
} else {
// normal
this.style.transform = bigIcon;
// medium
icons[prima1].style.transform = middleIcon;
icons[next1].style.transform = middleIcon;
// small
icons[prima2].style.transform = smallIcon;
icons[next2].style.transform = smallIcon;
}
});
// not hover icon
icons[index].addEventListener('touchend', function() {
icons.forEach((item1, hideIndex) => {
icons[hideIndex].style.transform = normalIcon;
});
firstContainer.style.gap = '0vw';
});
});