Product animation

View the video on our facebook page for better quality:

Product Animation

Code here:

selector{

display: flex;
}
/*Show/Hide CSS*/
selector .hide{
display: none;
}
selector:hover .hide{
display: block;
}
/*Image Transform*/
selector img{
transition: ease 1s;
}
selector:hover img{
transform: translate(-20px, -40px) rotate(-15deg) scale(1.4);
}
/*Mobile Hover*/
@media (max-width: 767px){
selector:hover img{
transform: translate(-20px, 0px) rotate(-10deg) scale(1);
}
selector{
margin: 50px 10px;
}
}

Scroll to Top