Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aditi Thapliyal - Created Pull Request #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,182 changes: 1,182 additions & 0 deletions Aditi Thapliyal/assets/css/style.css

Large diffs are not rendered by default.

Binary file added Aditi Thapliyal/assets/img/bg.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 Aditi Thapliyal/assets/img/me.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
184 changes: 184 additions & 0 deletions Aditi Thapliyal/assets/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,184 @@
!(function ($) {
"use strict";

// Nav Menu
$(document).on("click", ".nav-menu a, .mobile-nav a", function (e) {
if (
location.pathname.replace(/^\//, "") ==
this.pathname.replace(/^\//, "") &&
location.hostname == this.hostname
) {
var hash = this.hash;
var target = $(hash);
if (target.length) {
e.preventDefault();

if ($(this).parents(".nav-menu, .mobile-nav").length) {
$(".nav-menu .active, .mobile-nav .active").removeClass("active");
$(this).closest("li").addClass("active");
}

if (hash == "#header") {
$("#header").removeClass("header-top");
$("section").removeClass("section-show");
if ($("body").hasClass("mobile-nav-active")) {
$("body").removeClass("mobile-nav-active");
$(".mobile-nav-toggle i").toggleClass(
"icofont-navigation-menu icofont-close"
);
$(".mobile-nav-overly").fadeOut();
}
return;
}

if (!$("#header").hasClass("header-top")) {
$("#header").addClass("header-top");
setTimeout(function () {
$("section").removeClass("section-show");
$(hash).addClass("section-show");
}, 350);
} else {
$("section").removeClass("section-show");
$(hash).addClass("section-show");
}

$("html, body").animate(
{
scrollTop: 0,
},
350
);

if ($("body").hasClass("mobile-nav-active")) {
$("body").removeClass("mobile-nav-active");
$(".mobile-nav-toggle i").toggleClass(
"icofont-navigation-menu icofont-close"
);
$(".mobile-nav-overly").fadeOut();
}

return false;
}
}
});

// Activate/show sections on load with hash links
if (window.location.hash) {
var initial_nav = window.location.hash;
if ($(initial_nav).length) {
$("#header").addClass("header-top");
$(".nav-menu .active, .mobile-nav .active").removeClass("active");
$(".nav-menu, .mobile-nav")
.find('a[href="' + initial_nav + '"]')
.parent("li")
.addClass("active");
setTimeout(function () {
$("section").removeClass("section-show");
$(initial_nav).addClass("section-show");
}, 350);
}
}

// Mobile Navigation
if ($(".nav-menu").length) {
var $mobile_nav = $(".nav-menu").clone().prop({
class: "mobile-nav d-lg-none",
});
$("body").append($mobile_nav);
$("body").prepend(
'<button type="button" class="mobile-nav-toggle d-lg-none"><i class="icofont-navigation-menu"></i></button>'
);
$("body").append('<div class="mobile-nav-overly"></div>');

$(document).on("click", ".mobile-nav-toggle", function (e) {
$("body").toggleClass("mobile-nav-active");
$(".mobile-nav-toggle i").toggleClass(
"icofont-navigation-menu icofont-close"
);
$(".mobile-nav-overly").toggle();
});

$(document).click(function (e) {
var container = $(".mobile-nav, .mobile-nav-toggle");
if (!container.is(e.target) && container.has(e.target).length === 0) {
if ($("body").hasClass("mobile-nav-active")) {
$("body").removeClass("mobile-nav-active");
$(".mobile-nav-toggle i").toggleClass(
"icofont-navigation-menu icofont-close"
);
$(".mobile-nav-overly").fadeOut();
}
}
});
} else if ($(".mobile-nav, .mobile-nav-toggle").length) {
$(".mobile-nav, .mobile-nav-toggle").hide();
}

// jQuery counterUp
$('[data-toggle="counter-up"]').counterUp({
delay: 10,
time: 1000,
});

// Skills section
$(".skills-content").waypoint(
function () {
$(".progress .progress-bar").each(function () {
$(this).css("width", $(this).attr("aria-valuenow") + "%");
});
},
{
offset: "80%",
}
);

// Testimonials carousel (uses the Owl Carousel library)
$(".testimonials-carousel").owlCarousel({
autoplay: true,
dots: true,
loop: true,
responsive: {
0: {
items: 1,
},
768: {
items: 2,
},
900: {
items: 3,
},
},
});

// Porfolio isotope and filter
$(window).on("load", function () {
var portfolioIsotope = $(".portfolio-container").isotope({
itemSelector: ".portfolio-item",
layoutMode: "fitRows",
});

$("#portfolio-flters li").on("click", function () {
$("#portfolio-flters li").removeClass("filter-active");
$(this).addClass("filter-active");

portfolioIsotope.isotope({
filter: $(this).data("filter"),
});
});
});

// Initiate venobox (lightbox feature used in portofilo)
$(document).ready(function () {
$(".venobox").venobox({
share: false,
});
});

// Portfolio details carousel
$(".portfolio-details-carousel").owlCarousel({
autoplay: true,
dots: true,
loop: true,
items: 1,
});
})(jQuery);
Loading