forked from Rakesh9100/Beautiify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
167 lines (140 loc) · 5.74 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
const hamburger = document.querySelector(".hamburger");
const navMenu = document.querySelector(".nav-menu");
document.addEventListener("DOMContentLoaded", function() {
setTimeout(function() {
document.querySelector("body").classList.add("loaded");
}, 500)
});
hamburger.addEventListener("click", mobileMenu);
function mobileMenu() {
hamburger.classList.toggle("active");
navMenu.classList.toggle("active");
}
const navLink = document.querySelectorAll(".nav-link");
navLink.forEach(n => n.addEventListener("click", closeMenu));
function closeMenu() {
hamburger.classList.remove("active");
navMenu.classList.remove("active");
}
let calcScrollValue = () => {
let scrollProg = document.getElementById("progress");
let pos = document.documentElement.scrollTop;
let calcHeight =
document.documentElement.scrollHeight -
document.documentElement.clientHeight;
let scrollValue = Math.round((pos * 100) / calcHeight);
if (pos > 100) {
scrollProg.style.display = "grid";
} else {
scrollProg.style.display = "none";
}
scrollProg.addEventListener("click", () => {
document.documentElement.scrollTop = 0;
});
scrollProg.style.background = `conic-gradient(#0063ba ${scrollValue}%, #d499de ${scrollValue}%)`;
};
window.addEventListener('scroll', function () {
var scrollToTopButton = document.getElementById('progress');
if (window.pageYOffset > 200) {
scrollToTopButton.style.display = 'block';
} else {
scrollToTopButton.style.display = 'none';
}
});
window.onscroll = calcScrollValue;
window.onload = calcScrollValue;
document.getElementById("year").textContent = new Date().getFullYear();
// Function to filter components
function filterComponents() {
var input, filter, components, i;
input = document.getElementById('componentSearch');
filter = input.value.toUpperCase().trim();
components = document.querySelectorAll('.container .box');
console.log(filter)
console.log(components)
for (i = 0; i < components.length; i++) {
var component = components[i];
var h2 = component.querySelector('h2');
var componentName = h2.textContent || h2.innerText;
if (componentName.toUpperCase().indexOf(filter) > -1) {
component.style.display="flex";
} else {
component.style.display="none";
}
}
}
// Voice command in search bar feature
const searchBar = document.querySelector("#searchBar");
const searchBarInput = searchBar.querySelector("input");
// The speech recognition interface lives on the browser’s window object
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
if(SpeechRecognition) {
console.log("Your Browser supports speech Recognition");
const recognition = new SpeechRecognition();
recognition.continuous = true;
searchBar.insertAdjacentHTML("beforeend", '<button type="button"><i class="fas fa-microphone"></i></button>');
searchBarInput.style.paddingRight = "50px";
const micBtn = searchBar.querySelector("button");
const micIcon = micBtn.firstElementChild;
micBtn.addEventListener("click", micBtnClick);
function micBtnClick() {
if(micIcon.classList.contains("fa-microphone")) { // Start Voice Recognition
recognition.start(); // First time you have to allow access to mic!
}
else {
recognition.stop();
}
}
recognition.addEventListener("start", startSpeechRecognition);
function startSpeechRecognition() {
micIcon.classList.remove("fa-microphone");
micIcon.classList.add("fa-microphone-slash");
searchFormInput.focus();
console.log("Voice activated, SPEAK");
}
recognition.addEventListener("end", endSpeechRecognition);
function endSpeechRecognition() {
micIcon.classList.remove("fa-microphone-slash");
micIcon.classList.add("fa-microphone");
searchBarInput.focus();
console.log("Speech recognition service disconnected");
}
recognition.addEventListener("result", resultOfSpeechRecognition);
function resultOfSpeechRecognition(event) {
const current = event.resultIndex;
const transcript = event.results[current][0].transcript;
newtranscript = transcript.endsWith('.') ? transcript.slice(0, -1) : transcript;
console.log(newtranscript)
searchBarInput.value = newtranscript;
filterComponents();
}
}
else {
console.log("Your Browser does not support speech Recognition");
info.textContent = "Your Browser does not support Speech Recognition";
}
// JavaScript to highlight the active section in the navbar
document.addEventListener("DOMContentLoaded", function () {
const homeLink = document.querySelector('.nav-menu a[href="#home"]');
const componentsLink = document.querySelector('.nav-menu a[href="#components"]');
const searchBarSection = document.getElementById('searchBar');
const componentsSection = document.getElementById('components');
componentsLink.addEventListener('click', (event) => {
event.preventDefault();
componentsSection.scrollIntoView({ behavior: 'smooth' });
componentsLink.style.color = 'red';
homeLink.style.color = '';
});
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
// Adjust the offset accordingly
const componentsSectionTop = componentsSection.offsetTop - 50;
if (currentScroll >= componentsSectionTop) {
componentsLink.style.color = 'red';
homeLink.style.color = '';
} else {
componentsLink.style.color = '';
homeLink.style.color = 'red';
}
});
});