iOS Toggle Style

0 viewsmedium
Background:
iOS Toggle Style
1
2
3
4
5
6
7
8
<div class="ios-style-container">
  <input type="checkbox" />
  <div class="ios-style-checkmark">
    <div class="ios-slider"></div>
    <div class="ios-check">✓</div>
  </div>
  <span class="ios-style-label">iOS Style</span>
</div>
Was this helpful?

What is inside iOS Toggle Style

iOS Toggle Style is a CSS checkbox built with transforms, layered shadows, defined in 63 lines across 10 selectors.

21
CSS properties
10
Selectors
63
Lines of CSS
3
Formats

Techniques used

TransitionsTransformsShadowsChecked stateFlexbox

CSS properties in this component

align-itemsbackgroundborder-radiusbox-shadowcolorcursordisplayfont-sizefont-weightgapheightinputleftopacityoverflowpositiontoptransformtransitionuser-selectwidth

Accessibility check1 to fix

  • Built on a native <input> element, so keyboard focus and screen reader semantics work without extra attributes.
  • No focus style is defined. Add one before shipping, or keyboard users lose track of position.

These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.