material-web/switch/lib
2022-08-12 09:29:05 -07:00
..
_switch-handle-theme.scss chore: update repository for Material 3 2022-06-17 16:42:04 +00:00
_switch-icon-theme.scss chore: update repository for Material 3 2022-06-17 16:42:04 +00:00
_switch-theme.scss feat(switch): add warning for handle-height and handle-width which are not yet implmented. 2022-08-12 09:29:05 -07:00
_switch-track-theme.scss chore: update repository for Material 3 2022-06-17 16:42:04 +00:00
_switch.scss refactor(switch): select input by class name. 2022-07-26 19:20:00 -07:00
README.md chore: update repository for Material 3 2022-06-17 16:42:04 +00:00
switch_test.ts feat(switch): added action-element to fire event on press. 2022-07-22 10:13:46 -07:00
switch-styles.scss chore: update repository for Material 3 2022-06-17 16:42:04 +00:00
switch.ts refactor(switch): select input by class name. 2022-07-26 19:20:00 -07:00

Switch

DOM structure

<button class="md3-switch">
  <div class="md3-switch__track">
    ::before
    <div class="md3-switch__handle">
      ::before
      <div class="md3-switch__icons">
      </div>
    </div>
  </div>
  <input type="checkbox" aria-hidden="true">
</button>

.md3-switch

This is the outermost button. It holds the track and the input checkbox.

NOTE: This is intentionally left without a border to make the focus-ring simpler to apply.

.md3-switch__track

This is the track. It contains the track selected styles.

.md3-switch__track::before

This element contains the track unselected styles. Its opacity is set to 0 when the switch is selected.

.md3-switch__handle

This is the handle. It contains the styles of selected styles.

.md3-switch__handle::before

This element contains the handle unselected styles. Its opacity is set to 0 when the switch is selected.

Animations

  • opacity on .md3-switch__track::before
    • Why? setting opacity will change between selected and unselected track
  • opacity on .md3-switch__handle::before
    • Why? setting opacity will change between selected and unselected handle
  • transform (scale) on .md3-switch__handle
    • Why? This animates the growing & shrinking of the handle.
  • margin-inline-start & margin-inline-end on .md3-switch__handle
    • Why? This animates the position of the handle.