-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
93 lines (83 loc) · 2.49 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
$(document).ready(function () {
// Scroll down sticky navbar script start
$(window).scroll(function () {
if (this.scrollY > 20) {
$(".navbar").addClass("sticky");
} else {
$(".navbar").removeClass("sticky");
}
// Scroll down sticky navbar script end
// Scroll up Button script start
if (this.scrollY > 500) {
$(".scroll-up-btn").addClass("show");
} else {
$(".scroll-up-btn").removeClass("show");
}
// Scroll up Button script end
// Fade In & Fade Out Elements on Scroll script start
$(".fadein").each(function (i) {
var bottom_of_element = $(this).offset().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();
if (bottom_of_window > bottom_of_element) {
$(this).addClass("showme");
}
if (bottom_of_window < bottom_of_element) {
$(this).removeClass("showme");
}
});
// Fade In & Fade Out Elements on Scroll script end
});
// Scroll up Button script start
$(".scroll-up-btn").click(function () {
$("html").animate({ scrollTop: 0 });
});
// Scroll up Button script end
// animation Script for display
const animationScript = ["Front End Developer", "java developer", "web Developer"];
// Typing animation script start
new Typed(".typing", {
strings: animationScript,
typeSpeed: 100,
backSpeed: 60,
loop: true,
});
new Typed(".typing2", {
strings: animationScript,
typeSpeed: 100,
backSpeed: 60,
loop: true,
});
// Typing animation script End
// toggle menu/navbar script start
$(".menu-btn").click(function () {
$(".navbar .menu").toggleClass("active");
$(".menu-btn i").toggleClass("active");
});
// toggle menu/navbar script end
// owl carousel script start
$(".carousel").owlCarousel({
margin: 20,
loop: true,
autoplayTimeOut: 2000,
autoplayHoverPause: true,
responsive: {
0: {
items: 1,
nav: false,
},
600: {
items: 2,
nav: false,
},
1000: {
items: 3,
nav: false,
},
},
});
// owl carousel script end
});
// Get the current year
const currentYear = new Date().getFullYear();
// Set the current year in the span with id "year"
document.getElementById('year').textContent = currentYear;