-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
34 lines (29 loc) · 796 Bytes
/
Copy pathscript.js
File metadata and controls
34 lines (29 loc) · 796 Bytes
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
function loadingAnimation() {
gsap.from("#content h1", {
y: 100,
opacity: 0,
delay: 0.5,
duration: 0.5,
stagger: 0.2,
});
gsap.from("#content img", {
y: 100,
opacity: 0,
delay: 1,
duration: 0.5,
});
}
loadingAnimation();
const locoScroll = new LocomotiveScroll({
el: document.querySelector("#main"),
smooth: true,
});
var Tawk_API = Tawk_API || {}, Tawk_LoadStart = new Date();
(function() {
var s1 = document.createElement("script"), s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = 'https://embed.tawk.to/66f656c1e5982d6c7bb564ae/1i8qac5vn';
s1.charset = 'UTF-8';
s1.setAttribute('crossorigin', '*');
s0.parentNode.insertBefore(s1, s0);
})();