Code:
<style>
#images {
width: 500px;
height: 400px;
padding: 100px;
}
.font {
position:absolute;
transition: 2s linear;
}
img {
border: 1px solid black;
}
.font:hover {
transform: translateX(-500px);
}
</style>
<div id="images">
<img src="pic.jpg" height="400px" width="500px" class="font" />
<img src="pic1.jpg" height="400px" width="500px"/>
</div>
Comments
Post a Comment