Subway Sliding Doors

0 viewshard
Background:
Subway Sliding Doors
1
2
3
4
5
6
7
8
9
10
11
<div class="subway-doors-container">
  <input type="checkbox" id="subway-doors" class="hidden" />
  <label for="subway-doors" class="doors-wrapper">
    <div class="train-car">
      <div class="door-left"></div>
      <div class="door-right"></div>
      <div class="door-track"></div>
    </div>
    <span class="doors-text">Subway Doors</span>
  </label>
</div>
Was this helpful?

What is inside Subway Sliding Doors

Subway Sliding Doors is a CSS checkbox built with gradient fills, transforms, defined in 63 lines across 11 selectors.

20
CSS properties
11
Selectors
63
Lines of CSS
3
Formats

Techniques used

TransitionsTransformsGradientsChecked stateFlexbox

CSS properties in this component

align-itemsbackgroundborderborder-radiusbottomcolorcursordisplayfont-weightgapheightinputjustify-contentleftoverflowpositionrighttransformtransitionwidth

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.