File size: 1,314 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
import React, { useState, useEffect } from "react";
import { Link } from "react-router-dom";
function NavbarWithoutUser() {
const [show, handleShow] = useState(false);
const transitionNavBar = () => {
if (window.scrollY > 100) {
handleShow(true);
} else {
handleShow(false);
}
};
useEffect(() => {
window.addEventListener("scroll", transitionNavBar);
return () => {
window.removeEventListener("scroll", transitionNavBar);
};
}, []);
return (
<div>
<header
className={`fixed z-50 w-full flex items-center py-4 transition duration-500 ease-in-out ${
show && "bg-black transition duration-500 ease-in-out"
}`}
>
<div className="w-9/12 md:w-11/12">
<img
className="h-8 sm:h-10 sm:w-18 ml-8 cursor-pointer"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Netflix_2015_logo.svg/1920px-Netflix_2015_logo.svg.png"
alt="NETFLIX"
/>
</div>
<div>
<Link to="/signin">
<button className="bg-red-600 px-8 rounded-sm py-2 text-white text-base font-bold mr-4 lg:mr-0">
Login
</button>
</Link>
</div>
</header>
</div>
);
}
export default NavbarWithoutUser;
|