hover logo
Для сайта Бориса Гордиенко
by Denis Tverdokhlebov
HTML
<div class="grid">
<a href="#">
<img src="https://www.mobileiron.com/sites/default/files/customers/lg-svg/unicredit.png" class="logo_2" alt="">
<p>text logo</p>
</a>
</div>
CSS
.grid {
text-align: center;
position: relative;
}
.grid img {
transition: 1.5s;
width: 200px;
height: auto;
}
.grid:hover img {
transition: 1.5s;
transform: scale(1.2);
}
.grid a {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.grid p {
opacity: 0;
transition: 1.5s;
}
.grid a {
text-decoration: none;
}
.grid:hover p {
opacity: 1;
transition: 1.5s;
text-decoration: none;
}