Element UI is best viewed on desktop
/
/
/
Arrow slide card
Profile

Arrow slide card

PRO

A service grid with arrows that glide right on hover. Built for any set of services that deserves more than a static list.

Released

1 month ago

Built with

Widgets

Container, Heading, Text editor, Icon

Custom code

CSS

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.

.card .icon {
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card:hover .icon {
    transform: translateX(calc(40px));
}
Copied to clipboard!