Created
August 28, 2012 11:18
-
-
Save Acconut/3497330 to your computer and use it in GitHub Desktop.
CSS Ribbon
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
/** | |
* CSS Ribbon | |
*/ | |
#box { | |
position: relative; | |
width: 300px; | |
height: 75px; | |
} | |
#box:hover { | |
width: 500px; | |
transition: all 1s; | |
} | |
#front { | |
position: absolute; | |
background: red; | |
height: 100%; | |
width: 100%; | |
z-index: 2; | |
color: white; | |
font-family: arial; | |
font-weight: bold; | |
font-size: 30px; | |
text-align: center; | |
line-height: 75px; | |
} | |
#back { | |
height: 100%; | |
width: 75px; | |
background: yellow; | |
position: absolute; | |
z-index: 1; | |
right: -50px; | |
top: 25px; | |
} | |
#back #cut { | |
height: 0px; | |
width: 0px; | |
position: absolute; | |
z-index: 3; | |
border: 38px solid white; | |
border-color: transparent white transparent transparent; | |
} | |
#edge { | |
width: 0px; | |
height: 0px; | |
position: absolute; | |
border-color: blue transparent transparent transparent; | |
border-style: solid; | |
border-width: 25px; | |
border-left-width: 0px; | |
z-index: 3; | |
top: 100%; | |
right: 0px; | |
} |
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
<div id="box"> | |
<div id="front"> | |
Hover me | |
</div> | |
<div id="edge"></div> | |
<div id="back"> | |
<div id="cut"></div> | |
</div> | |
</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":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment