Kevin Kudu
I run events 🎪 and manage
content creation 🎥 for web3 companies.
Currently, I'm in Toronto 🇨🇦
This is what I am reading 📗 and watching 🍿
.hover-item {
position: relative;
display: inline-block;
cursor: pointer;
}
.hover-item media-item {
position: absolute;
top: 20%;
left: -6%;
width: 15vw;
pointer-events: none;
opacity: 0;
transition: opacity 0.1s ease-in;
}
.hover-item:hover media-item {
opacity: 1;
}
body.mobile .hover-item media-item{
display: none;
}