Skip to content

Instantly share code, notes, and snippets.

@vodin26
Created April 7, 2015 20:44
Show Gist options
  • Save vodin26/0a748ea39bba99094015 to your computer and use it in GitHub Desktop.
Save vodin26/0a748ea39bba99094015 to your computer and use it in GitHub Desktop.
uilang_button
<!doctype html>
<title>Example</title>
<script src=uilang.js></script>
<style>
#switch, #circle {
transition: .4s
}
#switch {
background: #FAFAFB /* gray */
}
#switch.active {
background: #52D468 /* green */
}
#circle {
width: 50%
}
#switch.active #circle {
transform: translateX(100%)
}
</style>
<div id=switch>
<div id=circle></div>
</div>
<code>
clicking on "#switch" toggles class "active" on "#switch"
</code>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment