Actualizar 'js/main.js'

This commit is contained in:
Gilson Javier 2019-12-29 22:00:17 +00:00
parent 96bafb6f7a
commit b2f9d8ac70
1 changed files with 79 additions and 54 deletions

View File

@ -52,3 +52,28 @@ document.addEventListener("DOMContentLoaded", function() {
window.addEventListener("orientationChange", lazyload);
}
})
(function($) { // Begin jQuery
$(function() { // DOM ready
// If a link has a dropdown, add sub menu toggle.
$('nav ul li a:not(:only-child)').click(function(e) {
$(this).siblings('.nav-dropdown').toggle();
// Close one dropdown when selecting another
$('.nav-dropdown').not($(this).siblings()).hide();
e.stopPropagation();
});
// Clicking away from dropdown will remove the dropdown class
$('html').click(function() {
$('.nav-dropdown').hide();
});
// Toggle open and close nav styles on click
$('#nav-toggle').click(function() {
$('nav ul').slideToggle();
});
// Hamburger to X toggle
$('#nav-toggle').on('click', function() {
this.classList.toggle('active');
});
}); // end DOM ready
})(jQuery); // end jQuery