header hamburger menu for mobile format
This commit is contained in:
@@ -1,16 +1,21 @@
|
|||||||
'use client';
|
'use client';
|
||||||
|
|
||||||
import React, { MouseEvent } from 'react';
|
import React, { useState, useEffect, MouseEvent } from 'react';
|
||||||
|
import { CiMenuFries } from "react-icons/ci";
|
||||||
|
import { IoCloseOutline } from "react-icons/io5";
|
||||||
|
|
||||||
export default function Header() {
|
export default function Header() {
|
||||||
|
|
||||||
const links = [
|
const links = [
|
||||||
{"text": "Accueil" , "target": "/"},
|
{ "text": "Accueil", "target": "/" },
|
||||||
{"text": "Travaux" , "target": "/#works"},
|
{ "text": "Travaux", "target": "/#works" },
|
||||||
{"text": "À propos" , "target": "/#about"},
|
{ "text": "À propos", "target": "/#about" },
|
||||||
{"text": "Blog" , "target": "/blog"},
|
{ "text": "Blog", "target": "/blog" },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
const [showText, setShowText] = useState(false);
|
||||||
|
|
||||||
const handleAnchorClick = (e: MouseEvent<HTMLLIElement>, target: string) => {
|
const handleAnchorClick = (e: MouseEvent<HTMLLIElement>, target: string) => {
|
||||||
if (target.startsWith("/#")) { // only anchor links
|
if (target.startsWith("/#")) { // only anchor links
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@@ -20,22 +25,105 @@ export default function Header() {
|
|||||||
element.scrollIntoView({ behavior: "smooth" });
|
element.scrollIntoView({ behavior: "smooth" });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
setIsOpen(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (isOpen) {
|
||||||
|
const timer = setTimeout(() => setShowText(true), 450);
|
||||||
|
return () => clearTimeout(timer);
|
||||||
|
} else {
|
||||||
|
setShowText(false);
|
||||||
|
}
|
||||||
|
}, [isOpen]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-brand-beige h-20 fixed left-2.75 right-2.75 z-50 rounded-b-[20px]">
|
<div className="bg-brand-beige h-20 fixed left-2.75 right-2.75 z-50 rounded-b-[20px]">
|
||||||
<header className="h-20 bg-brand-brown text-brand-beige py-6 px-10 flex justify-between items-center rounded-[10px]">
|
<header className="h-20 bg-brand-brown text-brand-beige py-6 px-10 flex justify-between items-center rounded-[10px]">
|
||||||
<div className="hidden md:block font-serif text-2xl font-light">M. Guilbert</div>
|
<div className="hidden md:block font-serif text-2xl font-light">M. Guilbert</div>
|
||||||
<img className="block md:hidden w-auto h-15" src="/icons/logo.svg" alt="logo mg dev" />
|
<img className="block md:hidden w-auto h-15" src="/icons/logo.svg" alt="logo mg dev" />
|
||||||
|
|
||||||
|
{/* Desktop */}
|
||||||
<nav className="hidden sm:block">
|
<nav className="hidden sm:block">
|
||||||
<ul className="flex gap-8 font-sans text-base font-light">
|
<ul className="flex gap-8 font-sans text-base font-light">
|
||||||
{links.map((link, index) => (
|
{links.map((link, index) => (
|
||||||
<li key={index} onClick={(e) => handleAnchorClick(e, link.target)}><a href={link.target}>{link.text}</a></li>
|
<li key={index} className="cursor-pointer" onClick={(e) => handleAnchorClick(e, link.target)}><a href={link.target}>{link.text}</a></li>
|
||||||
))}
|
))}
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<div className="hidden sm:block font-sans text-base font-light">France</div>
|
<div className="hidden sm:block font-sans text-base font-light">France</div>
|
||||||
|
|
||||||
|
{/* Mobile */}
|
||||||
|
<nav className="block sm:hidden">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setIsOpen(true)}
|
||||||
|
className="cursor-pointer"
|
||||||
|
aria-label="Ouvrir le menu"
|
||||||
|
>
|
||||||
|
<CiMenuFries className="text-3xl" />
|
||||||
|
</button>
|
||||||
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
{/* Overlay mobile menu */}
|
||||||
|
<div className={`sm:hidden fixed inset-2.75 z-60 overflow-hidden rounded-[10px] ${isOpen ? "pointer-events-auto" : "pointer-events-none"}`}>
|
||||||
|
{/* wave / circle that fills the screen */}
|
||||||
|
<div className={`absolute right-6 top-2 h-14 w-14 rounded-full bg-[#5a4336] transition-transform duration-900 ease-[cubic-bezier(0.22,1,0.36,1)] ${isOpen ? "scale-[38]" : "scale-0"} origin-center`} />
|
||||||
|
|
||||||
|
{/* content */}
|
||||||
|
<div className={`relative z-10 flex h-full flex-col justify-between px-10 pt-5 pb-10 transition-opacity duration-300 ${isOpen ? "opacity-100" : "opacity-0"}`}>
|
||||||
|
|
||||||
|
{/* top bar */}
|
||||||
|
<div className="flex items-center justify-between">
|
||||||
|
<div className="font-serif text-2xl font-light text-brand-beige">
|
||||||
|
M. Guilbert
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
onClick={() => setIsOpen(false)}
|
||||||
|
className="text-brand-beige text-3xl leading-none"
|
||||||
|
aria-label="Fermer le menu"
|
||||||
|
>
|
||||||
|
<IoCloseOutline />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* liens */}
|
||||||
|
<nav>
|
||||||
|
<ul className="flex flex-col gap-4">
|
||||||
|
{links.map((link, index) => (
|
||||||
|
<li
|
||||||
|
key={index}
|
||||||
|
onClick={(e) => handleAnchorClick(e, link.target)}
|
||||||
|
className={`
|
||||||
|
cursor-pointer text-brand-beige font-serif text-[clamp(2.4rem,9vw,5rem)] leading-[0.95]
|
||||||
|
transition-all duration-700 ease-out
|
||||||
|
${showText ? "translate-x-0 opacity-100" : "-translate-x-12 opacity-0"}
|
||||||
|
`}
|
||||||
|
style={{
|
||||||
|
transitionDelay: showText ? `${index * 140}ms` : "0ms",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<a href={link.target} className="inline-block">
|
||||||
|
{link.text}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/* footer */}
|
||||||
|
<div
|
||||||
|
className={`text-brand-beige/80 text-sm font-sans transition-all duration-700 ${showText ? "translate-x-0 opacity-100" : "-translate-x-8 opacity-0"
|
||||||
|
}`}
|
||||||
|
style={{ transitionDelay: showText ? "650ms" : "0ms" }}
|
||||||
|
>
|
||||||
|
France
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ export default function HeroSection() {
|
|||||||
<section className="w-full h-[calc(100vh-(2*11px))] rounded-[10px] bg-brand-brown text-brand-beige flex flex-col items-center justify-center relative">
|
<section className="w-full h-[calc(100vh-(2*11px))] rounded-[10px] bg-brand-brown text-brand-beige flex flex-col items-center justify-center relative">
|
||||||
{/* Title + image container */}
|
{/* Title + image container */}
|
||||||
<div className="flex flex-col w-9/10 gap-2.5
|
<div className="flex flex-col w-9/10 gap-2.5
|
||||||
lg:flex-row lg:justify-between lg:items-center lg:w-2/3
|
md:flex-row md:justify-between md:items-center md:w-2/3
|
||||||
">
|
">
|
||||||
{/* Rotating texts */}
|
{/* Rotating texts */}
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
@@ -14,7 +14,7 @@ export default function HeroSection() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Image */}
|
{/* Image */}
|
||||||
<img className="rounded-[10px] w-full h-[clamp(300px,50vh,700px)] object-cover" src="/images/pofile.png" alt="Image of me" />
|
<img className="rounded-[10px] w-full object-cover h-[clamp(200px,30vh,500px)] md:h-[clamp(250px,35vh,600px)] lg:h-[clamp(300px,45vh,700px)]" src="/images/pofile.png" alt="Image of me" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Call to scroll */}
|
{/* Call to scroll */}
|
||||||
|
|||||||
Reference in New Issue
Block a user