Skip to content

Instantly share code, notes, and snippets.

@wenjul
Forked from anonymous/index.html
Created November 22, 2012 15:22
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wenjul/4131693 to your computer and use it in GitHub Desktop.
Save wenjul/4131693 to your computer and use it in GitHub Desktop.
Advanced Checkbox Hack - This works for both iOS and Android! You can use almost the default checkbox-hack syntax and just need to add two things:## 1. Android smaller than / equal 4.1.2pseudo-class + general/adjacent siblin
<h1>Advanced Checkbox Hack</h1>
<input type="checkbox" id="button" />
<label for="button" onclick>click / touch</label>
<div>
Change my color!
<br>
<span>even mine :D</span>
</div>
/**
Advanced Checkbox Hack
# What? #
The better Checkbox-Hack because it works for both iOS and Android.
## 1. Android <= 4.1.2
pseudo-class + general/adjacent sibling doesn't
work on Android so we need a hack:
body { -webkit-animation: bugfix infinite 1s; }
@-webkit-keyframes bugfix { from {padding:0;} to {padding:0;} }
## 2. iOS < 6.0
Due to a bug on iOS it's not possible to click the label
to toggle the input (checkbox), so we add an empty
onclick to the label:
<label for="button" onclick>click / touch</label>
# 2012 by Tim Pietrusky
# timpietrusky.com
**/
/* Advanced Checkbox Hack */
/*
* pseudo-class + general/adjacent sibling doesn't work
* on Android <= 4.1.2 so we need a hack:
*
* A useless animation :D
*/
body { -webkit-animation: bugfix infinite 1s; }
@-webkit-keyframes bugfix { from {padding:0;} to {padding:0;} }
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
cursor: pointer;
user-select: none;
}
/* styling */
body {
margin:.5em;
font: 1em sans-serif;
}
h1 {
position:fixed;
z-index:-1;
top:.25em;
left:8em;
font-size:1.3em;
width:14em;
color:#666;
}
label {
display:inline-block;
background:#ccc;
margin:0 0 .5em 0;
padding:1em 2em;
}
div {
background: hsla(24, 80%, 50%, .8);
width: 26em;
height: 10em;
line-height: 100px;
color: white;
text-align: center;
}
/* checked */
input[type=checkbox]:checked ~ div {
background: hsla(120, 80%, 50%, .8);
}
input[type=checkbox]:checked ~ div span {
background: hsla(310, 60%, 50%, .8);
padding:1em;
}
input[type=checkbox]:checked ~ label {
background: hsla(220, 80%, 50%, .8);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment