-
-
Save OllyHodgson/3825929 to your computer and use it in GitHub Desktop.
Box shadow art, CSS transitions, via https://gist.github.com/cahnory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Box shadow art, CSS transitions, via https://gist.github.com/cahnory | |
*/ | |
.image1 { | |
background: red; | |
font-size: 10px; | |
height: 1em; | |
width: 1em; | |
/* Drawing */ | |
box-shadow: 1em 0 #000, | |
0 1em #000; | |
transition: all 350ms cubic-bezier(0.420, 0.000, 0.580, 1.000); | |
} | |
.image1:hover { | |
font-size: 50px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Roll over the red square : | |
<div class="image1"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment