-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
63 lines (55 loc) · 1.75 KB
/
script.js
File metadata and controls
63 lines (55 loc) · 1.75 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
window.onload = function() {
// var typed = new Typed('#element', {
// strings: ['Full Stack Learner', 'Java Learner', 'Photography Enthusiast'],
// typeSpeed: 50,
// backSpeed: 25,
// loop: true
// });
// };
// ---------- Typing Animation ----------
var typed = new Typed("#element", {
strings: [
"a Web Development learner 💻",
"a Java Programme learner ☕",
"into Photography 📸"
],
typeSpeed: 50,
backSpeed: 50,
loop: true,
})};
// ---------- Smooth Scrolling ----------
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute("href"));
if (target) {
target.scrollIntoView({ behavior: "smooth" });
}
});
});
// ---------- Reveal Animations on Scroll ----------
const revealElements = document.querySelectorAll(
".learning-card, .project-card, .service-box, .about-container, .leftsection, .rightsection"
);
const observer = new IntersectionObserver(
entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
}
});
},
{ threshold: 0.2 }
);
revealElements.forEach(el => observer.observe(el));
// ---------- Scroll to Top Button ----------
const scrollBtn = document.createElement("button");
scrollBtn.innerText = "↑";
scrollBtn.classList.add("scroll-top");
document.body.appendChild(scrollBtn);
scrollBtn.addEventListener("click", () => {
window.scrollTo({ top: 0, behavior: "smooth" });
});
window.addEventListener("scroll", () => {
scrollBtn.style.display = window.scrollY > 400 ? "block" : "none";
})