Last active
March 16, 2018 15:52
-
-
Save KhalilZaidoun/31415bc91598676b201c87ea1beca281 to your computer and use it in GitHub Desktop.
React Toggle switch with only inline style !
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
import styled from 'styled-components'; | |
const Toggle = styled.input` | |
-moz-appearance: none; | |
-webkit-appearance: none; | |
-o-appearance: none; | |
position: relative; | |
height: 20px; | |
width: 40px; | |
border-radius: 10px; | |
box-shadow: inset -20px 0px 0px 1px rgba(192, 192, 192, 0.5); | |
background-color: white; | |
border: 1px solid rgba(192, 192, 192, 1); | |
outline: none; | |
-webkit-transition: 0.2s; | |
transition: 0.2s; | |
&:checked { | |
box-shadow: inset 20px 0px 0px 1px rgba(33, 150, 243, 0.5); | |
border: 1px solid rgba(33, 150, 243, 1); | |
} | |
&:-ms-check { | |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */ | |
filter: alpha(opacity=0); /* IE 5-7 */ | |
opacity: 0; | |
} | |
`; | |
Toggle.defaultProps= { | |
type: "checkbox" | |
}; | |
export default Toggle; | |
// <Toggle onChange={...}/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment