-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
18 lines (17 loc) · 872 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body class="bg-slate-500">
<div class="menu-btn absolute z-[3] top-10 right-10 cursor-pointer transition-all duration-500 ease-out rotate-180">
<div class="btn-line w-7 h-1 mb-1 bg-black transition-all duration-500 ease-out rounded-md rotate-45 translate-x-[5px] -translate-y-[5px]"></div>
<div class="btn-line w-7 h-1 mb-1 bg-black transition-all duration-500 ease-out rounded-md opacity-0"></div>
<div class="btn-line w-7 h-1 mb-1 bg-black transition-all duration-500 ease-out rounded-md -rotate-45 translate-x-[7px] translate-y-[-6px]"></div>
</div>
</body>
</html>