-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
113 lines (95 loc) · 3.78 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
document.addEventListener('DOMContentLoaded', function() {
const swup = new Swup();
// Create the wrapper div
const wrapperDiv = document.createElement('div');
wrapperDiv.id = 'wrapper';
wrapperDiv.style.position = 'relative';
// Create the video element
const videoElement = document.createElement('video');
videoElement.id = 'animated-video';
videoElement.style.width = 'auto';
videoElement.style.height = '450px';
videoElement.style.position = 'absolute';
videoElement.style.top = 'calc(50vh - 50px)';
videoElement.style.left = '50%';
videoElement.style.transform = 'translate(-50%, -50%)';
videoElement.style.zIndex = '2';
videoElement.autoplay = true;
videoElement.muted = true;
videoElement.disablePictureInPicture = true;
// Create the source element
const sourceElement = document.createElement('source');
sourceElement.src = 'assets/Animation transparent.webm';
sourceElement.type = 'video/webm';
// Append the source to the video
videoElement.appendChild(sourceElement);
// Append the video to the wrapper
wrapperDiv.appendChild(videoElement);
// Insert the wrapper div into the DOM
document.getElementById('swup').insertBefore(wrapperDiv, document.getElementById('wrapper'));
// Prevent context menu on video
document.getElementById('animated-video').addEventListener('contextmenu', function(e) {
e.preventDefault();
});
function getScrollbarWidth() {
const container = document.createElement('div');
document.body.appendChild(container);
container.style.overflow = 'scroll';
container.style.width = '50px';
container.style.height = '50px';
const inner = document.createElement('div');
container.appendChild(inner);
inner.style.width = '100%';
const scrollbarWidth = container.offsetWidth - inner.offsetWidth;
document.body.removeChild(container);
return scrollbarWidth;
}
const content = document.querySelector('.content');
content.style.opacity = '0';
setTimeout(() => {
content.style.transition = 'opacity 2s ease-out';
content.style.opacity = '1';
const connectWithMe = document.querySelector('.connect-with-me');
connectWithMe.style.transition = 'opacity 2s ease-out, visibility 2s ease-out';
connectWithMe.style.opacity = '1';
connectWithMe.style.visibility = 'visible';
}, 3000); // 3 seconds delay
setTimeout(() => {
document.getElementById('animated-video').remove();
}, 3000);
const scrollbarWidth = getScrollbarWidth();
document.body.classList.add('no-overflow');
document.body.style.paddingRight = `${scrollbarWidth}px`;
setTimeout(() => {
document.body.classList.remove('no-overflow');
document.body.style.paddingRight = '';
}, 3000);
// Typing effect
const textElement = document.getElementById('text');
const cursorElement = document.getElementById('cursor');
const text = "oscar saul.";
let index = 0;
function type() {
if (index === 0) {
textElement.textContent = "";
}
if (index < text.length) {
textElement.textContent += text.charAt(index);
index++;
setTimeout(type, 100);
} else {
cursorElement.style.display = 'none';
}
}
setTimeout(() => {
type();
}, 3000); // Start typing after 3 seconds
document.querySelectorAll('button').forEach(button => {
button.addEventListener('mouseover', function() {
this.querySelector('i').classList.add('gradient');
});
button.addEventListener('mouseout', function() {
this.querySelector('i').classList.remove('gradient');
});
});
});