Skip to content

Instantly share code, notes, and snippets.

@csssecrets
Created January 26, 2015 12:09
Show Gist options
  • Select an option

  • Save csssecrets/c62456fed36a524b8273 to your computer and use it in GitHub Desktop.

Select an option

Save csssecrets/c62456fed36a524b8273 to your computer and use it in GitHub Desktop.
Diamond images — via clip-path
/**
* Diamond images — via clip-path
*/
img {
max-width: 250px;
margin: 20px;
-webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
transition: 1s;
}
img:hover {
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
<img src="http://csssecrets.io/images/adamcatlace.jpg" />
<img src="http://csssecrets.io/images/adam-sleeping.jpg" />
// alert('Hello world!');
{"view":"split","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