Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Website 2024 #16

Closed
wants to merge 13 commits into from
130 changes: 82 additions & 48 deletions assets/css/template.css

Large diffs are not rendered by default.

Binary file modified assets/images/Alt.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 assets/images/Alt1.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 assets/images/Aman2.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 assets/images/Bindu3.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 modified assets/images/HeadOnlyAlt.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 assets/images/Narayan.jpeg
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 assets/images/Prakash.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 not shown.
Binary file removed assets/images/RajeshNeupane_Coordinator.jpg
Binary file not shown.
Binary file added assets/images/Raunak4.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 assets/images/Samrat5.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 removed assets/images/SuyogSatyal_Secretary.jpg
Binary file not shown.
Binary file added assets/images/aAlt.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 assets/images/aHeadOnlyAlt.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 assets/images/darshan_p2.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 assets/images/krishant_t.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 assets/images/krishant_t.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 removed assets/images/mahima.jpg
Binary file not shown.
Binary file added assets/images/namaraj_l.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 removed assets/images/rahul.jpg
Binary file not shown.
Binary file removed assets/images/rajeev.jpg
Binary file not shown.
Binary file removed assets/images/rajesh.jpg
Binary file not shown.
Binary file removed assets/images/rishav.jpg
Binary file not shown.
Binary file removed assets/images/rujal.jpg
Binary file not shown.
Binary file removed assets/images/suban.jpg
Binary file not shown.
Binary file removed assets/images/sumit.jpg
Diff not rendered.
Binary file removed assets/images/suyog.jpg
Diff not rendered.
160 changes: 61 additions & 99 deletions assets/js/custom.js
Original file line number Diff line number Diff line change
@@ -1,106 +1,68 @@
(function($) {
(function ($) {
$(document).ready(function () {
$("body").addClass("js");
var $menu = $("#menu"),
$menulink = $(".menu-link");

$(document).ready(function() {
$('body').addClass('js');
var $menu = $('#menu'),
$menulink = $('.menu-link');

$menulink.click(function() {
$menulink.toggleClass('active');
$menu.toggleClass('active');
return false;
});});
$menulink.click(function () {
$menulink.toggleClass("active");
$menu.toggleClass("active");
return false;
});
});

videoPopup();

videoPopup();
$(".owl-carousel").owlCarousel({
loop: true,
margin: 30,
nav: true,
autoplay: true,
autoplayTimeout: 5000,
autoplayHoverPause: true,
responsive: {
0: {
items: 1,
},
550: {
items: 2,
},
750: {
items: 3,
},
1000: {
items: 4,
},
1200: {
items: 5,
},
},
});

$(".Modern-Slider").slick({
autoplay: true,
autoplaySpeed: 10000,
speed: 600,
slidesToShow: 1,
slidesToScroll: 1,
pauseOnHover: false,
dots: true,
pauseOnDotsHover: true,
cssEase: "fade",
// fade:true,
draggable: false,
prevArrow: '<button class="PrevArrow"></button>',
nextArrow: '<button class="NextArrow"></button>',
});

$('.owl-carousel').owlCarousel({
loop:true,
margin:30,
nav:true,
autoplay:true,
autoplayTimeout:5000,
autoplayHoverPause:true,
responsive:{
0:{
items:1
},
550:{
items:2
},
750:{
items:3
},
1000:{
items:4
},
1200:{
items:5
}
}
})


$(".Modern-Slider").slick({
autoplay:true,
autoplaySpeed:10000,
speed:600,
slidesToShow:1,
slidesToScroll:1,
pauseOnHover:false,
dots:true,
pauseOnDotsHover:true,
cssEase:'fade',
// fade:true,
draggable:false,
prevArrow:'<button class="PrevArrow"></button>',
nextArrow:'<button class="NextArrow"></button>',
});


$("div.features-post").hover(
function() {
$(this).find("div.content-hide").slideToggle("medium");
},
function() {
$(this).find("div.content-hide").slideToggle("medium");
}
);


$( "#tabs" ).tabs();


(function init() {
function getTimeRemaining(endtime) {
var t = Date.parse("2021/09/10 00:00") - Date.parse(new Date());
var seconds = Math.floor((t / 1000) % 60);
var minutes = Math.floor((t / 1000 / 60) % 60);
var hours = Math.floor((t / (1000 * 60 * 60)) % 24);
var days = Math.floor(t / (1000 * 60 * 60 * 24));
return {
'total': t,
'days': days,
'hours': hours,
'minutes': minutes,
'seconds': seconds
};
}

function initializeClock(endtime){
var timeinterval = setInterval(function(){
var t = getTimeRemaining(endtime);
document.querySelector(".days > .value").innerText=t.days;
document.querySelector(".hours > .value").innerText=t.hours;
document.querySelector(".minutes > .value").innerText=t.minutes;
document.querySelector(".seconds > .value").innerText=t.seconds;
if(t.total<=0){
clearInterval(timeinterval);
}
},1000);
}
initializeClock(((new Date()).getFullYear()+1) + "/1/1")
})()
$("div.features-post").hover(
function () {
$(this).find("div.content-hide").slideToggle("medium");
},
function () {
$(this).find("div.content-hide").slideToggle("medium");
}
);

$("#tabs").tabs();
})(jQuery);
Loading