Что несет нам завтрашний день?
[html]<style>
.image{
width: 600px;
height: 442px;
position: absolute;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
}
#block{
position: relative;
margin: auto;
}
#block:hover .for-hover { opacity: 1 }
.main{
position:relative;
width: 100%;
height: 300px;
}
.for-hover{
width: 600px;
height: 442px;
opacity: 0;
position: absolute;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
transition: all 1.6s ease-in-out;
}
</style>
<div class="main">
<div id="block">
<div class="image"><img src="https://i.imgur.com/C5gkpG4.jpg"/></div>
<div class="for-hover">
<img src="https://i.imgur.com/sKbQpJ9.jpg"/>
</div>
</div>
</div>
[/html]
Отредактировано Elaine Avem (2020-08-29 13:07:13)