Image hover effect for social media buttons. Pop-up Frosted Glass Effect with options for pop-up speed, background colour and blur intensity.
4/5 - (1 vote)
Image hover effect for social media buttons. Pop-up Frosted Glass Effect with options for pop-up speed, background colour and blur intensity.
selector {
--height: 200px;
--bottom: -200px;
overflow: hidden !important;
}
selector .member-info{
height: var(--height);
position: absolute;
backdrop-filter: blur(15px);
bottom: 0;
transition: .5s ease-in-out;
}
selector .member-info{
bottom: var(--bottom);
}
selector:hover .member-info{
bottom: 0px;
}
No Additional HTML Required