-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
117 lines (93 loc) · 3.09 KB
/
index.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
114
115
116
(function ($) {
"use strict";
// Navbar on scrolling
$(window).scroll(function () {
if ($(this).scrollTop() > 200) {
$('.navbar').fadeIn('slow').css('display', 'flex');
} else {
$('.navbar').fadeOut('slow').css('display', 'none');
}
});
// Smooth scrolling on the navbar links
$(".navbar-nav a").on('click', function (event) {
if (this.hash !== "") {
event.preventDefault();
$('html, body').animate({
scrollTop: $(this.hash).offset().top - 45
}, 1500, 'easeInOutExpo');
if ($(this).parents('.navbar-nav').length) {
$('.navbar-nav .active').removeClass('active');
$(this).closest('a').addClass('active');
}
}
});
// Typed Initiate
if ($('.typed-text-output').length == 1) {
var typed_strings = $('.typed-text').text();
var typed = new Typed('.typed-text-output', {
strings: typed_strings.split(', '),
typeSpeed: 100,
backSpeed: 20,
smartBackspace: false,
loop: true
});
}
// Modal Video
$(document).ready(function () {
var $videoSrc;
$('.btn-play').click(function () {
$videoSrc = $(this).data("src");
});
console.log($videoSrc);
$('#videoModal').on('shown.bs.modal', function (e) {
$("#video").attr('src', $videoSrc + "?autoplay=1&modestbranding=1&showinfo=0");
})
$('#videoModal').on('hide.bs.modal', function (e) {
$("#video").attr('src', $videoSrc);
})
});
// Scroll to Bottom
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scroll-to-bottom').fadeOut('slow');
} else {
$('.scroll-to-bottom').fadeIn('slow');
}
});
// Skills
$('.skill').waypoint(function () {
$('.progress .progress-bar').each(function () {
$(this).css("width", $(this).attr("aria-valuenow") + '%');
});
}, {offset: '80%'});
// Portfolio isotope and filter
var portfolioIsotope = $('.portfolio-container').isotope({
itemSelector: '.portfolio-item',
layoutMode: 'fitRows'
});
$('#portfolio-flters li').on('click', function () {
$("#portfolio-flters li").removeClass('active');
$(this).addClass('active');
portfolioIsotope.isotope({filter: $(this).data('filter')});
});
// Back to top button
$(window).scroll(function () {
if ($(this).scrollTop() > 200) {
$('.back-to-top').fadeIn('slow');
} else {
$('.back-to-top').fadeOut('slow');
}
});
$('.back-to-top').click(function () {
$('html, body').animate({scrollTop: 0}, 1500, 'easeInOutExpo');
return false;
});
// Testimonials carousel
$(".testimonial-carousel").owlCarousel({
autoplay: true,
smartSpeed: 1500,
dots: true,
loop: true,
items: 1
});
})(jQuery);