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
/*Glass Effect CSS*/
selector {
--height: 150px;
--bottom: -150px;
overflow: hidden !important;
}
selector .member-info{
height: var(--height);
position: absolute;
backdrop-filter: blur(15px);
bottom: 0;
transition: .5s ease-in-out;
}
/*Hover Hide/Show CSS*/
selector .member-info{
bottom: var(--bottom);
}
selector:hover .member-info{
bottom: 0px;
}