Skip to content

Instantly share code, notes, and snippets.

@chestozo
Created August 6, 2012 06:54
Show Gist options
  • Save chestozo/3271704 to your computer and use it in GitHub Desktop.
Save chestozo/3271704 to your computer and use it in GitHub Desktop.
Untitled
.container {
position: absolute;
width: 400px;
height: 400px;
margin-left: 100px;
margin-top: 50px;
border: 3px dotted #DDD;
overflow: hidden;
}
.container .img {
position: absolute;
width: 300px;
height: 300px;
vertical-align: middle;
text-align: center;
}
.container .img img {
box-shadow: 0px 3px 19px #AAA;
}
.container .img.img1 {
}
.container .img.img2 {
margin-top: 50px;
margin-left: 300px;
}
.container .img {
transition-property: margin-left;
transition-duration: 1000ms;
transition-timing-function: default;
}
.container:hover .img.img1 {
margin-left: -300px;
}
.container:hover .img.img2 {
margin-left: 0;
}
<div class="container">
<div class="img img1"><img class="i" src="http://fotki.adams.yandex.ru:10081/get/0/22805354.0/0_32_923e3875_M" /></div>
<div class="img img2"><img class="i" src="http://fotki.adams.yandex.ru:10081/get/0/22805354.0/0_31_6cd7fa8_M" /></div>
</div>
{"view":"split-vertical","fontsize":"70","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment