-
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
Showing
17 changed files
with
11,315 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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.
Large diffs are not rendered by default.
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,59 @@ | ||
/*! | ||
* Start Bootstrap - Creative v7.0.7 (https://startbootstrap.com/theme/creative) | ||
* Copyright 2013-2023 Start Bootstrap | ||
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-creative/blob/master/LICENSE) | ||
*/ | ||
// | ||
// Scripts | ||
// | ||
|
||
window.addEventListener('DOMContentLoaded', event => { | ||
|
||
// Navbar shrink function | ||
var navbarShrink = function () { | ||
const navbarCollapsible = document.body.querySelector('#mainNav'); | ||
if (!navbarCollapsible) { | ||
return; | ||
} | ||
if (window.scrollY === 0) { | ||
navbarCollapsible.classList.remove('navbar-shrink') | ||
} else { | ||
navbarCollapsible.classList.add('navbar-shrink') | ||
} | ||
|
||
}; | ||
|
||
// Shrink the navbar | ||
navbarShrink(); | ||
|
||
// Shrink the navbar when page is scrolled | ||
document.addEventListener('scroll', navbarShrink); | ||
|
||
// Activate Bootstrap scrollspy on the main nav element | ||
const mainNav = document.body.querySelector('#mainNav'); | ||
if (mainNav) { | ||
new bootstrap.ScrollSpy(document.body, { | ||
target: '#mainNav', | ||
rootMargin: '0px 0px -40%', | ||
}); | ||
}; | ||
|
||
// Collapse responsive navbar when toggler is visible | ||
const navbarToggler = document.body.querySelector('.navbar-toggler'); | ||
const responsiveNavItems = [].slice.call( | ||
document.querySelectorAll('#navbarResponsive .nav-link') | ||
); | ||
responsiveNavItems.map(function (responsiveNavItem) { | ||
responsiveNavItem.addEventListener('click', () => { | ||
if (window.getComputedStyle(navbarToggler).display !== 'none') { | ||
navbarToggler.click(); | ||
} | ||
}); | ||
}); | ||
|
||
// Activate SimpleLightbox plugin for portfolio items | ||
new SimpleLightbox({ | ||
elements: '#portfolio a.portfolio-box' | ||
}); | ||
|
||
}); |