This video shows a simple way to animate multiple Elementor Widgets or elements with a single hover event. Uses custom CSS Parent-Child structure, and basic CSS transitions.
This video shows a simple way to animate multiple Elementor Widgets or elements with a single hover event. Uses custom CSS Parent-Child structure, and basic CSS transitions.
Copy and Paste the CSS below into Site Settings -> Custom CSS.
/********************
Hover Animations
*******************/
.aminate-on-hover {
box-shadow: 0 0 15px #00000022;
transform: translateX(0) translateY(0);
transition: all 1s;
}
.aminate-on-hover:hover{
box-shadow: 15px 15px 15px #00000055;
transform: translateX(-10px) translateY(-10px);
transition: all 1s;
}
.aminate-on-hover .animate-spin .elementor-icon{
transform: rotate(0);
transition: all .5s;
}
.aminate-on-hover:hover .animate-spin .elementor-icon{
transform: rotate(360deg);
transition: all 2s;
}
.aminate-on-hover .animate-zoom img{
transform: scale(1);
transition: all 0.5s;
}
.aminate-on-hover:hover .animate-zoom img{
transform: scale(1.2);
transition: all 3s;
}