Created
October 18, 2015 22:57
-
-
Save IllusionMH/22b0b590c06b4a2d05b4 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body { | |
padding: 50px; | |
} | |
input { | |
display: none; | |
} | |
label { | |
display: block; | |
position: relative; | |
box-sizing: border-box; | |
height: 48px; | |
width: 48px; | |
background: white; | |
} | |
label:before { | |
position: absolute; | |
content: ''; | |
display: block; | |
top: 0; | |
bottom: 0; | |
box-sizing: border-box; | |
border-left: 48px solid black; | |
border-top: 0px solid transparent; | |
border-bottom: 0px solid transparent; | |
transition: border-width 1s ease-in-out; | |
} | |
label:after { | |
position: absolute; | |
content: ''; | |
display: block; | |
width: 12px; | |
height: 48px; | |
background: white; | |
left: 50%; | |
margin-left: -6px; | |
transition: width 1s ease-in-out, margin-left 1s ease-in-out; | |
} | |
:checked + label:before { | |
border-left: 48px solid black; | |
border-top-width: 24px; | |
border-bottom-width: 24px; | |
} | |
:checked + label:after { | |
width: 0; | |
margin-left: 0; | |
} |
This file contains 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
<input type="checkbox" id="playpause" /> | |
<label for="playpause"></label> |
This file contains 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
// alert('Hello world!'); |
This file contains 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