mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
52 lines
No EOL
1,002 B
HTML
52 lines
No EOL
1,002 B
HTML
<label for="menu-icon" class="menu-icon">
|
|
<input id="menu-icon" type="checkbox" />
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</label>
|
|
|
|
<style>
|
|
/* From Uiverse.io by david-mohseni - Tags: checkbox, hamburger, menu */
|
|
.menu-icon {
|
|
position: relative;
|
|
width: 60px;
|
|
height: 50px;
|
|
background: rgb(0, 0, 0);
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
.menu-icon input {
|
|
display: none;
|
|
}
|
|
.menu-icon span {
|
|
display: block;
|
|
position: relative;
|
|
height: 3px;
|
|
width: 100%;
|
|
background: rgb(255, 255, 255);
|
|
border-radius: 10px;
|
|
opacity: 1;
|
|
left: 0;
|
|
margin-bottom: 24%;
|
|
transition: 0.3s ease-in-out;
|
|
}
|
|
.menu-icon span {
|
|
transform-origin: left center;
|
|
}
|
|
.menu-icon input:checked ~ span {
|
|
background: red;
|
|
left: 5px;
|
|
margin-bottom: 28%;
|
|
}
|
|
.menu-icon input:checked ~ span:nth-of-type(1) {
|
|
transform: rotate(45deg);
|
|
}
|
|
.menu-icon input:checked ~ span:nth-of-type(2) {
|
|
opacity: 0;
|
|
}
|
|
.menu-icon input:checked ~ span:nth-of-type(3) {
|
|
transform: rotate(-45deg);
|
|
}
|
|
|
|
</style>
|
|
|