Leaf Falling Checkbox
0 viewsmedium
Background:
1
2
3
4
5
6
7
8
9
10
11
<div class="leaf-container">
<input type="checkbox" id="leaf-check" />
<label for="leaf-check" class="leaf-label">
<span class="leaf-fall">
<span class="falling-leaf leaf-1">π</span>
<span class="falling-leaf leaf-2">π</span>
<span class="falling-leaf leaf-3">π</span>
</span>
<span class="leaf-text">Leaf Falling</span>
</label>
</div>Leaf Falling Checkbox
0 viewsmedium
Background:
Leaf Falling Checkbox
1
2
3
4
5
6
7
8
9
10
11
<div class="leaf-container">
<input type="checkbox" id="leaf-check" />
<label for="leaf-check" class="leaf-label">
<span class="leaf-fall">
<span class="falling-leaf leaf-1">π</span>
<span class="falling-leaf leaf-2">π</span>
<span class="falling-leaf leaf-3">π</span>
</span>
<span class="leaf-text">Leaf Falling</span>
</label>
</div>Was this helpful?
What is inside Leaf Falling Checkbox
Leaf Falling Checkbox is a CSS checkbox built with transforms, defined in 61 lines across 13 selectors.
19
CSS properties
13
Selectors
61
Lines of CSS
3
Formats
Techniques used
TransitionsTransformsChecked stateFlexbox
CSS properties in this component
align-itemscolorcursordisplayfont-sizefont-weightgapheightinputjustify-contentleftopacityoverflowpositiontoptransformtransitiontransition-delaywidthAccessibility 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.