Fahad is a talented web developer with a fantastic dimension of creativity and proactivity. He made the whole process very easy for me with excellent communication. I enjoyed the process and timely delivery. Thank you so much.
My goodness! Fahad!!! You're a magician. Oh my gosshh! I can't thank you more, Also thanks to Max for referring you! I'm super happy!
Subscribe To My YouTube Channel For More Upcoming Videos
selector{
height: 400px;
display: flex;
}
/*Show/Hide CSS*/
selector .hide-first{
display: none;
}
selector:hover .hide-first{
display: block;
}
/*Image Transform*/
selector img{
transition: ease .5s;
}
selector:hover img{
transform: translate(-20px, -40px) rotate(-25deg) scale(1.4);
}
/*Mobile Hover*/
@media (max-width: 767px){
selector:hover img{
transform: translate(-20px, 0px) rotate(-10deg) scale(1);
}
selector{
margin: 50px 10px;
}
}