-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
391 lines (335 loc) · 13.6 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
document.addEventListener("DOMContentLoaded", () => {
// Dropdown menu
const mainContainer = document.querySelector(".main-container");
const dropDownMenu = document.querySelector(".Dropdown-container");
const dropDownBtn = document.querySelector(".icon");
const details = document.querySelectorAll("details");
// Sliders
let sliderOne = document.querySelector(".slider-container .slider-0");
let sliderTwo = document.querySelector(".slider-container .slider-1");
let sliderThree = document.querySelector(".slider-container .slider-2");
// Sliders titles
let sliderOneValue = document.querySelector("#value-0");
let sliderTwoValue = document.querySelector("#value-1");
let sliderThreeValue = document.querySelector("#value-2");
// Color Picker
let colorPicker = document.querySelector(".colorPicker");
// Shadow color
let shadoWColor = document.querySelector(".shadowColor");
// Show container
let loginBox = document.querySelector(".show-container .login");
// squareA
let squareA = document.querySelector(".show-container .squareA");
squareA.style.rotate = " -25deg";
//squareB
let squareB = document.querySelector(".show-container .squareB");
squareB.style.rotate = " 25deg";
// Transparency
let transparency = document.querySelector(".code-show #tcy-0");
//Border Transparency
let borderTransparency = document.querySelector(".code-show #tcy-1");
// Shadow Transparency
let shadowTransparency = document.querySelector(".code-show #tcy-2");
// RGB
let rgb = document.querySelector(".code-show #rgb");
// Shadow rgb color text
let sdC = document.querySelector("#sdColor");
// Blur 1
let blurOne = document.getElementById("blurOne");
// Blur 2
let blurTwo = document.getElementById("blurTwo");
// Copy Button
let CopyBtnContainer = document.querySelector(".code-show .copy-codes");
const copyBtn = document.getElementById("copy-btn");
const rect = CopyBtnContainer.getBoundingClientRect();
const copyText = document.getElementById("text");
const copy = document.querySelector(".copy");
const copied = document.querySelector(".copied");
//Update CSS Property Of copyBtn.
let containerBound = {
left: rect.left,
top: rect.top,
};
// Default range background color
const rangBgColor = {
bgColorA: "var(--territory-bgColor)",
bgColorB: "var( --secondary-bgColor)",
};
// DropDown
let dropDisplay = false;
dropDownBtn.addEventListener("click", () => {
if (dropDownMenu.style.display === "none" || !dropDisplay) {
dropDownMenu.style.display = "block";
dropDisplay = true;
} else {
dropDownMenu.style.display = "none";
dropDisplay = false;
details[0].open = false;
details[1].open = false;
}
});
// Dropdown exit when click outside.
document.onclick = (e) => {
// console.log(e.target.className);
if (
e.target.className === "icon bi-plus-circle-dotted" ||
e.target.className === "summary" ||
e.target.className === "bg"
) {
dropDownMenu.style.display = "block";
} else {
dropDownMenu.style.display = "none";
}
};
// Background image change $fun
dropDownMenu.addEventListener("mousedown", (e) => {
for (let i = 0; i < 16; i++) {
switch (e.target.innerText) {
case `background - ${i}`:
mainContainer.style.setProperty(
"--img",
`url(./src/images/bg${i}.png)`
);
break;
default:
break;
}
}
});
// Color Picker
// console.log(colorPicker.querySelector("input").value);
colorPicker.addEventListener("input", (e) => {
// console.log(e.target.value);
hex = e.target.value;
let rgbColor = hexToRgb(hex);
let currentTransparency = transparency.innerHTML;
rgb.innerHTML = rgbColor;
squareA.style.background = `rgba(${rgbColor}, ${currentTransparency})`;
squareB.style.background = `rgba(${rgbColor}, ${currentTransparency})`;
loginBox.style.background = `rgba(${rgbColor}, ${currentTransparency})`;
// Copy info style
copy.style.transform = "translateY(0%)";
copy.style.opacity = "1";
copied.style.transform = "translateY(200%)";
copied.style.opacity = "0";
});
colorPicker.querySelector("input").value = "#ffffff";
// Shadow color picker
shadoWColor.addEventListener("input", (e) => {
hex = e.target.value;
let rgbColor = hexToRgb(hex);
let currentTransparency = transparency.innerHTML;
sdC.innerHTML = rgbColor;
squareA.style.boxShadow = `1px 1px 15px 1px rgba(${rgbColor}, ${currentTransparency})`;
squareB.style.boxShadow = `1px 1px 15px 1px rgba(${rgbColor}, ${currentTransparency})`;
loginBox.style.boxShadow = `1px 1px 15px 1px rgba(${rgbColor}, ${currentTransparency})`;
});
// Hex to RGB convert
function hexToRgb(hexColor) {
let r = parseInt(hexColor.slice(1, 3), 16);
let g = parseInt(hexColor.slice(3, 5), 16);
let b = parseInt(hexColor.slice(5, 7), 16);
return r + ", " + g + ", " + b;
}
// Transparency Set Slider
// Ddd input event listener to get slider value.
sliderOne.addEventListener("input", (ev) => {
// console.log(ev.target.value);
let convertValue = (sliderOne.value * 5) / 100;
sliderOneValue.innerHTML = convertValue;
// Add current bg value
let rgb = hexToRgb(colorPicker.querySelector("input").value);
// Add current shadow bg value
let sdC = hexToRgb(shadoWColor.querySelector("input").value);
// Show Container Background Color
loginBox.style.background = `rgba( ${rgb}, ${convertValue} )`;
squareA.style.background = `rgba( ${rgb}, ${convertValue} )`;
squareB.style.background = `rgba( ${rgb}, ${convertValue} )`;
// Box shadow transparency
squareA.style.boxShadow = `1px 1px 15px 1px rgba(${sdC}, ${convertValue})`;
squareB.style.boxShadow = `1px 1px 15px 1px rgba(${sdC}, ${convertValue})`;
loginBox.style.boxShadow = `1px 1px 15px 1px rgba(${sdC}, ${convertValue})`;
// Copy info style
copy.style.transform = "translateY(0%)";
copy.style.opacity = "1";
copied.style.transform = "translateY(200%)";
copied.style.opacity = "0";
// Dropdown visibility
dropDownMenu.style.display = "none";
// Code show Container
// Set transparency Value
transparency.innerHTML = " " + convertValue;
// Shadow Transparency value
shadowTransparency.innerHTML = " " + convertValue;
SliderOneFill(ev.target, rgb, sdC);
});
SliderOneFill(sliderOne.querySelector("input"));
// Shw transparency on window load.
loginBox.style.background = "rgba( 250, 250, 250, 0.15)";
squareA.style.background = "rgba( 250, 250, 250, 0.15)";
squareB.style.background = "rgba( 250, 250, 250, 0.15)";
transparency.innerHTML = "0.15";
// Fill input value $fun
function SliderOneFill(sliderOne, rgb, sdColor) {
let calcPercentage =
100 *
((sliderOne.value - sliderOne.min) / (sliderOne.max - sliderOne.min));
let convertValue = (sliderOne.value * 5) / 100;
sliderOneValue.innerHTML = convertValue;
sliderOne.style.background = `linear-gradient(90deg, ${rangBgColor.bgColorA} ${calcPercentage}%, ${rangBgColor.bgColorB} ${calcPercentage}%)`;
// Show Container Background Color
loginBox.style.background = `rgba( ${rgb}, ${convertValue})`;
squareA.style.background = `rgba( ${rgb}, ${convertValue})`;
squareB.style.background = `rgba( ${rgb}, ${convertValue})`;
// Box shadow transparency
squareA.style.boxShadow = `1px 1px 15px 1px rgba(${sdColor}, ${convertValue})`;
squareB.style.boxShadow = `1px 1px 15px 1px rgba(${sdColor}, ${convertValue})`;
loginBox.style.boxShadow = `1px 1px 15px 1px rgba(${sdColor}, ${convertValue})`;
// Code show Container
// Set transparency Value
transparency.innerHTML = " " + convertValue;
// Shadow Transparency value
shadowTransparency.innerHTML = " " + convertValue;
}
// Blur Set Slider
// Add input event listener to get slider value.
sliderTwo.addEventListener("input", (ev) => {
// console.log(ev.target.value);
let convertValue = sliderTwo.value / 2;
sliderTwoValue.innerHTML = convertValue;
// Show Container Background Color
loginBox.style.backdropFilter = `blur( ${convertValue}px )`;
loginBox.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
squareA.style.backdropFilter = `blur( ${convertValue}px )`;
squareA.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
squareB.style.backdropFilter = `blur( ${convertValue}px )`;
squareB.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
// Copy info style
copy.style.transform = "translateY(0%)";
copy.style.opacity = "1";
copied.style.transform = "translateY(200%)";
copied.style.opacity = "0";
// Dropdown visibility
dropDownMenu.style.display = "none";
// Code show Container
// Set Blur Value.
blurOne.innerHTML = " " + convertValue;
blurTwo.innerHTML = " " + convertValue;
SliderTwoFill(ev.target);
});
SliderTwoFill(sliderTwo.querySelector("input"));
// Show blur on window load.
loginBox.style.backdropFilter = "blur( 4px )";
loginBox.style.webkitBackdropFilter = "blur( 4px )";
squareA.style.backdropFilter = "blur( 4px )";
squareA.style.webkitBackdropFilter = "blur( 4px )";
squareB.style.backdropFilter = "blur( 4px )";
squareB.style.webkitBackdropFilter = "blur( 4px )";
blurOne.innerHTML = "4";
blurTwo.innerHTML = "4";
// Fill input value $fun
function SliderTwoFill(sliderTwo) {
let calcPercentage =
100 *
((sliderTwo.value - sliderTwo.min) / (sliderTwo.max - sliderTwo.min));
let convertValue = sliderTwo.value / 2;
sliderTwoValue.innerHTML = convertValue;
sliderTwo.style.background = `linear-gradient(90deg, ${rangBgColor.bgColorA} ${calcPercentage}%, ${rangBgColor.bgColorB} ${calcPercentage}%)`;
// Show Container Background Color
loginBox.style.backdropFilter = `blur( ${convertValue}px )`;
loginBox.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
squareA.style.backdropFilter = `blur( ${convertValue}px )`;
squareA.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
squareB.style.backdropFilter = `blur( ${convertValue}px )`;
squareB.style.webkitBackdropFilter = `blur( ${convertValue}px )`;
// Code show Container
// Set Blur Value.
blurOne.innerHTML = " " + convertValue;
blurTwo.innerHTML = " " + convertValue;
}
// Border Transparency Set Slider
// Ddd input event listener to get slider value.
sliderThree.addEventListener("input", (ev) => {
// console.log(ev.target.value);
let convertValue = (sliderThree.value * 5) / 100;
sliderThreeValue.innerHTML = convertValue;
// Show Container Background Color
loginBox.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
squareA.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
squareB.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
// Copy info style
copy.style.transform = "translateY(0%)";
copy.style.opacity = "1";
copied.style.transform = "translateY(200%)";
copied.style.opacity = "0";
// Dropdown visibility
dropDownMenu.style.display = "none";
// Code show Container
// Set transparency Value
borderTransparency.innerHTML = " " + convertValue;
SliderThreeFill(ev.target);
});
SliderThreeFill(sliderThree.querySelector("input"));
// Shw transparency on window load.
loginBox.style.borderColor = "rgba( 255, 255, 255, 0.15 )";
squareA.style.borderColor = "rgba( 255, 255, 255, 0.15 )";
squareB.style.borderColor = "rgba( 255, 255, 255, 0.15 )";
transparency.innerHTML = "0.15";
// Fill input value $fun
function SliderThreeFill(sliderThree) {
let calcPercentage =
100 *
((sliderThree.value - sliderThree.min) /
(sliderThree.max - sliderThree.min));
let convertValue = (sliderThree.value * 5) / 100;
sliderThreeValue.innerHTML = convertValue;
sliderThree.style.background = `linear-gradient(90deg, ${rangBgColor.bgColorA} ${calcPercentage}%, ${rangBgColor.bgColorB} ${calcPercentage}%)`;
// Show Container Background Color
loginBox.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
squareA.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
squareB.style.borderColor = `rgba( 255, 255, 255, ${convertValue} )`;
// Code show Container
// Set transparency Value
borderTransparency.innerHTML = " " + convertValue;
}
// copy button
// Update copyBtn position based on the mouse position.
CopyBtnContainer.addEventListener("mousemove", (ev) => {
containerBound = {
left: rect.left,
top: rect.top,
};
copyBtn.style.opacity = "1";
copyBtn.style.pointerEvents = "all";
copyBtn.style.setProperty("--x", `${ev.x - containerBound.left}px`);
copyBtn.style.setProperty("--y", `${ev.y - containerBound.top}px`);
});
// /Adjust copyBtn position based on window size.
document.addEventListener("resize", (ev) => {
containerBound = {
left: rect.left,
top: rect.top,
};
});
// Text copy function.
copy.style.transform = "translateY(0%)";
copy.style.opacity = "1";
copyBtn.addEventListener("click", () => {
// create new text area.
const textarea = document.createElement("textarea");
const copiedArea = copyText.innerText;
textarea.value = copiedArea;
document.body.appendChild(textarea);
textarea.select();
document.execCommand("copy");
textarea.remove();
// Copy info.
copy.style.transform = "translateY(200%)";
copy.style.opacity = "0";
copied.style.transform = "translateY(0%)";
copied.style.opacity = "1";
});
// Footer Date
const date = document.getElementById("date");
date.innerText = new Date().getFullYear();
});