This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
forked from bedimcode/responsive-portfolio-website-Alexa
-
Notifications
You must be signed in to change notification settings - Fork 1
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
0 parents
commit b1818c1
Showing
15 changed files
with
304 additions
and
0 deletions.
There are no files selected for viewing
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,18 @@ | ||
{ | ||
"files": { | ||
"main.css": "/react-portfolio/static/css/main.09335928.css", | ||
"main.js": "/react-portfolio/static/js/main.7c29c324.js", | ||
"static/media/profile_pic.png": "/react-portfolio/static/media/profile_pic.400f97a1924d48b212e4.png", | ||
"static/media/about.png": "/react-portfolio/static/media/about.a6e2fadb3c981278c01b.png", | ||
"static/media/hire.png": "/react-portfolio/static/media/hire.efad0f501bd12aa414c7.png", | ||
"static/media/portfolio3.jpg": "/react-portfolio/static/media/portfolio3.f0e7fa8280d9df023e12.jpg", | ||
"static/media/portfolio1.jpg": "/react-portfolio/static/media/portfolio1.b100f823e1d9a2e55cca.jpg", | ||
"index.html": "/react-portfolio/index.html", | ||
"main.09335928.css.map": "/react-portfolio/static/css/main.09335928.css.map", | ||
"main.7c29c324.js.map": "/react-portfolio/static/js/main.7c29c324.js.map" | ||
}, | ||
"entrypoints": [ | ||
"static/css/main.09335928.css", | ||
"static/js/main.7c29c324.js" | ||
] | ||
} |
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,179 @@ | ||
// /*==================== MENU SHOW Y HIDDEN ====================*/ | ||
// const navMenu = document.getElementById('nav-menu'), | ||
// navToggle = document.getElementById('nav-toggle'), | ||
// navClose = document.getElementById('nav-close'); | ||
|
||
// /*===== MENU SHOW =====*/ | ||
// /* Validate if constant exists */ | ||
// if(navToggle){ | ||
// navToggle.addEventListener('click', ()=>{ | ||
// navMenu.classList.add('show-menu'); | ||
// }) | ||
// } | ||
|
||
// /*===== MENU HIDDEN =====*/ | ||
// /* Validate if constant exists */ | ||
// if(navClose){ | ||
// navClose.addEventListener('click', ()=>{ | ||
// navMenu.classList.remove('show-menu'); | ||
// }) | ||
// } | ||
|
||
// /*==================== REMOVE MENU MOBILE ====================*/ | ||
// const navLink = document.querySelectorAll('.nav__link'); | ||
|
||
// function linkAction(){ | ||
// const navMenu = document.getElementById('nav-menu'); | ||
// // When we click on each nav__link, we remove the show-menu class | ||
// navMenu.classList.remove('show-menu'); | ||
// } | ||
// navLink.forEach(n => n.addEventListener('click', linkAction)); | ||
|
||
/*==================== ACCORDION SKILLS ====================*/ | ||
const skillsContent = document.getElementsByClassName('skills__content'), | ||
skillsHeader = document.querySelectorAll('.skills__header'); | ||
|
||
function toggleSkills() { | ||
let itemClass = this.parentNode.className; | ||
|
||
for (i = 0; i < skillsContent.length; i++) { | ||
skillsContent[i].className = 'skills__content skills__close'; | ||
} | ||
|
||
if (itemClass === 'skills__content skills__close') { | ||
this.parentNode.className = 'skills__content skills__open'; | ||
} | ||
} | ||
|
||
skillsHeader.forEach((el) => { | ||
el.addEventListener('click', toggleSkills); | ||
}); | ||
|
||
/*==================== QUALIFICATION TABS ====================*/ | ||
const tabs = document.querySelectorAll('[data-target]'), | ||
tabContents = document.querySelectorAll('[data-content]') | ||
|
||
tabs.forEach(tab => { | ||
tab.addEventListener('click', () => { | ||
const target = document.querySelector(tab.dataset.target); | ||
|
||
tabContents.forEach(tabContent => { | ||
tabContent.classList.remove('qualification__active'); | ||
}); | ||
|
||
target.classList.add('qualification__active'); | ||
|
||
tabs.forEach(tab => { | ||
tab.classList.remove('qualification__active'); | ||
}) | ||
tab.classList.add('qualification__active'); | ||
}) | ||
}) | ||
|
||
/*==================== SERVICES MODAL ====================*/ | ||
const modalViews = document.querySelectorAll('.services__modal'), | ||
modalBtns = document.querySelectorAll('.services__button'), | ||
modalCloses = document.querySelectorAll('.services__modal-close'); | ||
|
||
let modal = function (modalClick) { | ||
modalViews[modalClick].classList.add('active-modal'); | ||
}; | ||
|
||
modalBtns.forEach((modalBtn, i) => { | ||
modalBtn.addEventListener('click', () => { | ||
modal(i); | ||
}) | ||
}); | ||
|
||
modalCloses.forEach(modalClose => { | ||
modalClose.addEventListener('click', () => { | ||
modalViews.forEach((modalView) => { | ||
modalView.classList.remove('active-modal'); | ||
}); | ||
}); | ||
}); | ||
|
||
// /*==================== PORTFOLIO SWIPER ====================*/ | ||
// let swiper = new Swiper(".portfolio__container", { | ||
// cssMode: true, | ||
// loop: true, | ||
// navigation: { | ||
// nextEl: ".swiper-button-next", | ||
// prevEl: ".swiper-button-prev", | ||
// }, | ||
// pagination: { | ||
// el: ".swiper-pagination", | ||
// clickable: true, | ||
// }, | ||
// }); | ||
|
||
/*==================== TESTIMONIAL ====================*/ | ||
|
||
|
||
/*==================== SCROLL SECTIONS ACTIVE LINK ====================*/ | ||
const sections = document.querySelectorAll('section[id]') | ||
|
||
function scrollActive() { | ||
const scrollY = window.pageYOffset; | ||
|
||
sections.forEach(current => { | ||
const sectionHeight = current.offsetHeight; | ||
const sectionTop = current.offsetTop - 50; | ||
sectionId = current.getAttribute('id'); | ||
|
||
if (scrollY > sectionTop && scrollY <= sectionTop + sectionHeight) { | ||
document.querySelector('.nav__menu a[href*=' + sectionId + ']').classList.add('active-link'); | ||
} else { | ||
document.querySelector('.nav__menu a[href*=' + sectionId + ']').classList.remove('active-link'); | ||
} | ||
}) | ||
} | ||
window.addEventListener('scroll', scrollActive); | ||
|
||
|
||
/*==================== CHANGE BACKGROUND HEADER ====================*/ | ||
function scrollHeader() { | ||
const nav = document.getElementById('header'); | ||
// When the scroll is greater than 200 viewport height, add the scroll-header class to the header tag | ||
if (this.scrollY >= 80) nav.classList.add('scroll-header'); else nav.classList.remove('scroll-header'); | ||
} | ||
window.addEventListener('scroll', scrollHeader); | ||
|
||
|
||
// /*==================== SHOW SCROLL UP ====================*/ | ||
// function scrollUp(){ | ||
// const scrollUp = document.getElementById('scroll-up'); | ||
// // When the scroll is higher than 560 viewport height, add the show-scroll class to the a tag with the scroll-top class | ||
// if(this.scrollY >= 560) scrollUp.classList.add('show-scroll'); else scrollUp.classList.remove('show-scroll'); | ||
// } | ||
// window.addEventListener('scroll', scrollUp); | ||
|
||
// /*==================== DARK LIGHT THEME ====================*/ | ||
// const themeButton = document.getElementById('theme-button') | ||
// const darkTheme = 'dark-theme' | ||
// const iconTheme = 'uil-sun' | ||
|
||
// // Previously selected topic (if user selected) | ||
// const selectedTheme = localStorage.getItem('selected-theme') | ||
// const selectedIcon = localStorage.getItem('selected-icon') | ||
|
||
// // We obtain the current theme that the interface has by validating the dark-theme class | ||
// const getCurrentTheme = () => document.body.classList.contains(darkTheme) ? 'dark' : 'light' | ||
// const getCurrentIcon = () => themeButton.classList.contains(iconTheme) ? 'uil-moon' : 'uil-sun' | ||
|
||
// // We validate if the user previously chose a topic | ||
// if (selectedTheme) { | ||
// // If the validation is fulfilled, we ask what the issue was to know if we activated or deactivated the dark | ||
// document.body.classList[selectedTheme === 'dark' ? 'add' : 'remove'](darkTheme) | ||
// themeButton.classList[selectedIcon === 'uil-moon' ? 'add' : 'remove'](iconTheme) | ||
// } | ||
|
||
// // Activate / deactivate the theme manually with the button | ||
// themeButton.addEventListener('click', () => { | ||
// // Add or remove the dark / icon theme | ||
// document.body.classList.toggle(darkTheme) | ||
// themeButton.classList.toggle(iconTheme) | ||
// // We save the theme and the current icon that the user chose | ||
// localStorage.setItem('selected-theme', getCurrentTheme()) | ||
// localStorage.setItem('selected-icon', getCurrentIcon()) | ||
// }) |
Oops, something went wrong.