-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gaurav Tripathi
committed
Nov 3, 2023
0 parents
commit 907e25b
Showing
144 changed files
with
15,969 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
(function ($) { | ||
"use strict"; | ||
|
||
// Spinner | ||
var spinner = function () { | ||
setTimeout(function () { | ||
if ($('#spinner').length > 0) { | ||
$('#spinner').removeClass('show'); | ||
} | ||
}, 1); | ||
}; | ||
spinner(); | ||
|
||
|
||
// Initiate the wowjs | ||
new WOW().init(); | ||
|
||
|
||
// Sticky Navbar | ||
$(window).scroll(function () { | ||
if ($(this).scrollTop() > 300) { | ||
$('.sticky-top').addClass('bg-white shadow-sm').css('top', '-1px'); | ||
} else { | ||
$('.sticky-top').removeClass('bg-white shadow-sm').css('top', '-100px'); | ||
} | ||
}); | ||
|
||
|
||
// Facts counter | ||
$('[data-toggle="counter-up"]').counterUp({ | ||
delay: 10, | ||
time: 2000 | ||
}); | ||
|
||
|
||
// Experience | ||
$('.experience').waypoint(function () { | ||
$('.progress .progress-bar').each(function () { | ||
$(this).css("width", $(this).attr("aria-valuenow") + '%'); | ||
}); | ||
}, {offset: '80%'}); | ||
|
||
|
||
// Back to top button | ||
$(window).scroll(function () { | ||
if ($(this).scrollTop() > 300) { | ||
$('.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; | ||
}); | ||
|
||
|
||
// Modal Video | ||
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); | ||
}) | ||
|
||
|
||
// Testimonial carousel | ||
$(".testimonial-carousel").owlCarousel({ | ||
autoplay: true, | ||
smartSpeed: 1000, | ||
items: 1, | ||
loop: true, | ||
dots: false, | ||
nav: true, | ||
navText : [ | ||
'<i class="bi bi-arrow-left"></i>', | ||
'<i class="bi bi-arrow-right"></i>' | ||
] | ||
}); | ||
|
||
})(jQuery); | ||
|
Oops, something went wrong.
Oops, something went wrong.