A service grid with arrows that glide right on hover. Built for any set of services that deserves more than a static list.
Released
Category
Built with
Widgets
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));
}