This file contains hidden or 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
on = false; | |
function toggle(from, to) { | |
if (on == false) { | |
from | |
on = true; | |
} | |
if (on == true) { | |
to | |
on = false; |
This file contains hidden or 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
<div className="min-w-[300px] w-[400px] h-[400px] overflow-y-clip group bg-white"> | |
<img src="image.jpg" alt="image" className="h-[400px] w-full object-cover relative bottom-0 group-hover:bottom-[64px] duration-500" /> | |
<div className="relative bottom-0 flex flex-row bg-white group-hover:bottom-[80px] duration-300 py-5 px-5 justify-between items-center border-y-4 border-yellow border-b-gray-100"> | |
<h1 className="font-bold font-text">Kentucky Cheese Burger</h1> | |
<button className="font-text text-[15px] bg-yellow px-3 py-1 text-second font-semibold hover:opacity-90 duration-100">Order $10</button> | |
</div> | |
</div> |