Element UI is best viewed on desktop
/
/
/
/
Sticky slide out tab
Profile

Sticky slide out tab

PRO

This hover-activated tab starts as a small icon and smoothly expands to show a text label — a simple way to add sticky actions without cluttering your design.

Released

3 months ago

Category

Custom code

CSS

Built with

Need help?

Custom css

The CSS to make the animation for this power up is included in the top level parent container Advanced > Custom CSS. No additional setup needed. Just copy the component and the styles come with it.

/*Sticky slide out tab*/
.text {
    display: none;
}
.icontab {
    transition: width 0.7s ease;
}
.icontab:hover {
    width: 132px;
}
.icontab:hover .text {
    display: inline-block;
}
Copied to clipboard!