-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.js
More file actions
68 lines (47 loc) 路 1.45 KB
/
Copy pathcreate.js
File metadata and controls
68 lines (47 loc) 路 1.45 KB
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
document.addEventListener("DOMContentLoaded", () => {
const textContainer = document.getElementById("animated-text");
const audio = document.getElementById("hoverSound");
const text = "Create";
const span = document.createElement("span");
span.textContent = text;
textContainer.appendChild(span);
if(textContainer && audio){
textContainer.addEventListener("mouseover", () => {
audio.currentTime = 0;
audio.play();
});
textContainer.addEventListener("mouseout", () => {
audio.pause();
audio.currentTime = 0;
});
}
});
document.addEventListener("click", () => {
const audio = document.getElementById("hoverSound");
if(audio){
audio.muted = true;
audio.play().then(()=>{
audio.pause();
audio.currentTime = 0;
audio.muted = false;
});
}
}, { once:true });
function showOverlay() {
document.getElementById("overlayImage").style.display = "block";
}
function hideOverlay() {
document.getElementById("overlayImage").style.display = "none";
}
function handleNavClick(event) {
event.preventDefault();
const link = event.currentTarget;
const href = link.getAttribute('href');
link.classList.add('fade-out'); setTimeout(() => {
window.location.href = href; }, 500); }
document.addEventListener('DOMContentLoaded', (event) => {
const navLinks = document.querySelectorAll('.nav-links');
navLinks.forEach(link => {
link.addEventListener('click', handleNavClick);
});
});