RELEASE 1.0

Finished the menu, mobile versions and animations.
This commit is contained in:
AlexisNP
2019-08-22 14:11:15 +02:00
committed by GitHub
parent aa2e057741
commit 96726341b8
3 changed files with 180 additions and 33 deletions

6
js/app.js Normal file
View File

@@ -0,0 +1,6 @@
$(document).ready(() => {
// Toggles the menu
$('.menu-btn').click(() => {
$('.menu').toggleClass('active');
})
})