Skip to content

Instantly share code, notes, and snippets.

@IllusionMH
Created October 18, 2015 22:57
Show Gist options
  • Save IllusionMH/22b0b590c06b4a2d05b4 to your computer and use it in GitHub Desktop.
Save IllusionMH/22b0b590c06b4a2d05b4 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* 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;
}
<input type="checkbox" id="playpause" />
<label for="playpause"></label>
// alert('Hello world!');
{"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