Skip to content

Instantly share code, notes, and snippets.

@liz282907
Forked from csssecrets/dabblet.css
Created July 3, 2018 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liz282907/e04162ed10736bb54356d1867fb7c1b4 to your computer and use it in GitHub Desktop.
Save liz282907/e04162ed10736bb54356d1867fb7c1b4 to your computer and use it in GitHub Desktop.
Interactive image comparison - with CSS resize
/**
* Interactive image comparison - with CSS resize
*/
.image-slider {
position:relative;
display: inline-block;
}
.image-slider > div {
position: absolute;
top: 0; bottom: 0; left: 0;
width: 50%;
max-width: 100%;
overflow: hidden;
resize: horizontal;
}
.image-slider > div:before {
content: '';
position: absolute;
right: 0; bottom: 0;
width: 12px; height: 12px;
padding: 5px;
}
.image-slider img {
display: block;
user-select: none;
}
<div class="image-slider">
<div><img src="http://csssecrets.io/images/adamcatlace-before.jpg" alt="Before" /></div>
<img src="http://csssecrets.io/images/adamcatlace.jpg" />
</div>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment