-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
48 lines (40 loc) · 1.44 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
// Loader functionality
window.addEventListener('load', function() {
const loader = document.querySelector('.loader');
const container = document.querySelector('.container');
setTimeout(() => {
loader.classList.add('hidden');
container.classList.add('loaded');
}, 2000);
});
// Hamburger menu toggle
const hamburger = document.querySelector('.hamburger');
const navMenu = document.querySelector('.nav-menu');
hamburger.addEventListener('click', () => {
navMenu.classList.toggle('active');
});
// Button click animation
document.querySelectorAll('.btn, .telegram-btn').forEach(btn => {
btn.addEventListener('click', function(e) {
this.style.transform = 'scale(0.95)';
setTimeout(() => {
this.style.transform = 'scale(1)';
}, 100);
});
});
// Dynamic admission quotes
const quotes = [
"Continue your education by enrolling in NIOS and turn your dreams into reality!",
"Unlock your future with NIOS admission today!",
"Education is the key – start your journey with NIOS!",
"Your second chance at success begins with NIOS!",
"Empower yourself with NIOS – admissions open now!"
];
const quoteElement = document.querySelector('.quote');
let currentQuoteIndex = 0;
function changeQuote() {
quoteElement.textContent = quotes[currentQuoteIndex];
currentQuoteIndex = (currentQuoteIndex + 1) % quotes.length;
}
changeQuote();
setInterval(changeQuote, 3000);