-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
78 lines (67 loc) · 2.37 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
document.querySelectorAll('nav ul li a').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
if (targetElement) {
const offset = document.querySelector("nav").offsetHeight;
window.scrollTo({
top: targetElement.offsetTop - offset,
behavior: "smooth"
});
}
});
});
var canvas = document.getElementById('canvas');
var context = canvas.getContext('2d');
var W = window.innerWidth;
var H = window.innerHeight;
canvas.width = W;
canvas.height = H;
var fontSize = 8;
var columns = Math.floor(W / fontSize);
var drops = new Array(columns).fill(0);
var str = "abcdefghijklmnopqrstuvwxyz";
function draw() {
context.fillStyle = "rgba(0,0,0,0.05)";
context.fillRect(0, 0, W, H);
context.font = fontSize + "px monospace";
context.fillStyle = "#00cc33";
for (var i = 0; i < columns; i++) {
var index = Math.floor(Math.random() * str.length);
var x = i * fontSize;
var y = drops[i] * fontSize;
context.fillText(str[index], x, y);
if (y >= canvas.height && Math.random() > 0.99) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(draw, 35);
window.addEventListener('resize', function () {
W = window.innerWidth;
H = window.innerHeight;
canvas.width = W;
canvas.height = H;
columns = Math.floor(W / fontSize);
drops = new Array(columns).fill(0);
});
var typed = new Typed(".intro", {
strings: ["Hello, I'm Darsh Kulthia..."],
typeSpeed: 50,
backSpeed: 50,
loop: false
});
var typed = new Typed(".intro-2", {
strings: ["Full Stack Developer...", "Creator...", "Technophile...", "Passionate Developer...", "Tech Enthusiast...", "Web Developer...", "Creative Coder...", "UI/UX Designer...", "Problem Solver..."],
typeSpeed: 50,
backSpeed: 50,
loop: true
});
var typed = new Typed(".about-me", {
strings: ["Hey there! I'm Darsh Kulthia, a passionate full stack developer with a knack for turning ideas into interactive and visually stunning experiences. I thrive on the challenge of creating seamless, user-friendly interfaces that bridge design and functionality."],
typeSpeed: 50,
backSpeed: 50,
loop: false
});