On-screen text
EXPANDING HOVER MENU
style.css
.menu-item {
width: 52px;
height: 52px;
display: flex;
align-items: center;
gap: 0.75rem;
overflow: hidden;
border-radius: 90px;
transition:
width .45s cubic-bezier(.22, 1, .36, 1),
background .3s ease,
box-shadow .3s ease;
}
.menu-item:hover {
width: 160px;
background: rgba(255, 255, 255, 0.12);
box-shadow: 0 0 28px rgba(0, 229, 255, 0.22);
}
.menu-label {
opacity: 0;
transform: translateX(-8px);
transition:
opacity .25s ease,
max-width .45s ease,
transform .35s ease;
}
.menu-item:hover .menu-label {
opacity: 1;
max-width: 100px;
transform: translateX(0);
}