Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav Tripathi committed Nov 3, 2023
0 parents commit 907e25b
Show file tree
Hide file tree
Showing 144 changed files with 15,969 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Labsky-1.0.0/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file added Labsky-1.0.0/css/n.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
732 changes: 732 additions & 0 deletions Labsky-1.0.0/css/style.css

Large diffs are not rendered by default.

Binary file added Labsky-1.0.0/img/about-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/about-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/about-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/banner-1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/banner-2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/banner-3.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/button.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/call.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/carousel-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/carousel-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/cover.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/f.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/face2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/facebook.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/feature.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/footer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/h.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/linkdin.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/mail.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/nm.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/skin-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/skin-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/skin.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Labsky-1.0.0/img/sliver.jpg
Binary file added Labsky-1.0.0/img/team-1.jpg
Binary file added Labsky-1.0.0/img/team-2.jpg
Binary file added Labsky-1.0.0/img/team-3.jpg
Binary file added Labsky-1.0.0/img/team-4.jpg
Binary file added Labsky-1.0.0/img/team-5.jpg
Binary file added Labsky-1.0.0/img/testimonial-1.jpg
Binary file added Labsky-1.0.0/img/testimonial-2.jpg
Binary file added Labsky-1.0.0/img/twitter.gif
Binary file added Labsky-1.0.0/img/ui.jpg
Binary file added Labsky-1.0.0/img/youtube.gif
811 changes: 811 additions & 0 deletions Labsky-1.0.0/index.html

Large diffs are not rendered by default.

87 changes: 87 additions & 0 deletions Labsky-1.0.0/js/main.js
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);

Binary file added Labsky-1.0.0/laboratory-html-website-template.jpg
Loading

0 comments on commit 907e25b

Please sign in to comment.