29 CSS Checkboxes26 / 29

CSS + JSMIT licensed

Magnetic Checkbox

A physical, attractive feel: as the cursor approaches, the box leans toward it like a magnet, then snaps back when the pointer leaves. A tiny bit of pointer math drives a purely transform-based lean — smooth, GPU-friendly and fully optional.

Published Updated

Live Demo
Try it

The code

<section class="cb-26" id="cb-26" aria-label="Magnetic checkboxes">
  <div class="cb-26__panel">
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input" checked><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Snap to grid</span></label>
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input"><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Magnetic guides</span></label>
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input"><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Auto-align nodes</span></label>
  </div>
</section>
.cb-26,
.cb-26 *,
.cb-26 *::before,
.cb-26 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cb-26 ::selection {
  background: oklch(0.62 0.16 275);
  color: #fff;
}

.cb-26 {
  --accent: oklch(0.56 0.17 275);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  background: #f3f3fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-26__panel {
  width: min(400px,100%);
  background: #fff;
  border: 1px solid #e6e5f2;
  border-radius: 14px;
  padding: 8px 14px;
}

.cb-26__row {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 16px 10px;
}

.cb-26__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.cb-26__box {
  --dx: 0px;
  --dy: 0px;
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 2px solid #c2c0d8;
  background: #fff;
  transform: translate(var(--dx),var(--dy));
  transition: transform .3s cubic-bezier(.3,1.2,.4,1),background .2s,border-color .2s;
}

.cb-26__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s,transform .2s cubic-bezier(.2,.9,.3,1.2);
  -webkit-mask: no-repeat center/15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: no-repeat center/15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.cb-26__input:checked ~ .cb-26__box {
  background: var(--accent);
  border-color: var(--accent);
}

.cb-26__input:checked ~ .cb-26__box::after {
  opacity: 1;
  transform: scale(1);
}

.cb-26__input:focus-visible ~ .cb-26__box {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.cb-26__label {
  font-size: 14.5px;
  color: #2d2a3d;
}

@media (prefers-reduced-motion: reduce) {
  .cb-26__box {
    transition: background .2s,border-color .2s;
    transform: none!important;
  }
}
(function(){
  var root = document.getElementById('cb-26');
  if(!root) return;
  if(matchMedia('(hover:none)').matches || matchMedia('(prefers-reduced-motion:reduce)').matches) return;
  var MAX = 6; // px of lean
  root.querySelectorAll('[data-magnet]').forEach(function(row){
    var box = row.querySelector('.cb-26__box');
    row.addEventListener('pointermove', function(e){
      var r = box.getBoundingClientRect();
      var cx = r.left + r.width/2, cy = r.top + r.height/2;
      var dx = Math.max(-MAX, Math.min(MAX, (e.clientX - cx) / 3));
      var dy = Math.max(-MAX, Math.min(MAX, (e.clientY - cy) / 3));
      box.style.setProperty('--dx', dx.toFixed(1) + 'px');
      box.style.setProperty('--dy', dy.toFixed(1) + 'px');
    });
    row.addEventListener('pointerleave', function(){
      box.style.setProperty('--dx','0px');
      box.style.setProperty('--dy','0px');
    });
  });
})();
Paste this into ChatGPT, Claude, Cursor, or any coding assistant. The block below is pre-framed with everything the AI needs to integrate this demo into your project — markup, styles, scoping notes, and the source URL. Hit Copy and paste straight into your chat.
Here's a working CSS Checkboxe from CodeFronts. Use it as-is or adapt to your framework. All classes are scoped under a unique prefix so the code won't collide with your existing styles. MIT licensed.
Demo: Magnetic Checkbox
Source: https://codefronts.com/components/css-checkboxes/magnetic-checkbox/

A physical, attractive feel: as the cursor approaches, the box leans toward it like a magnet, then snaps back when the pointer leaves. A tiny bit of pointer math drives a purely transform-based lean — smooth, GPU-friendly and fully optional.
## HTML
```html
<section class="cb-26" id="cb-26" aria-label="Magnetic checkboxes">
  <div class="cb-26__panel">
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input" checked><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Snap to grid</span></label>
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input"><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Magnetic guides</span></label>
    <label class="cb-26__row" data-magnet><input type="checkbox" class="cb-26__input"><span class="cb-26__box" aria-hidden="true"></span><span class="cb-26__label">Auto-align nodes</span></label>
  </div>
</section>
```
## CSS
```css
.cb-26,
.cb-26 *,
.cb-26 *::before,
.cb-26 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cb-26 ::selection {
  background: oklch(0.62 0.16 275);
  color: #fff;
}

.cb-26 {
  --accent: oklch(0.56 0.17 275);
  font-family: 'Segoe UI',system-ui,sans-serif;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  background: #f3f3fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-26__panel {
  width: min(400px,100%);
  background: #fff;
  border: 1px solid #e6e5f2;
  border-radius: 14px;
  padding: 8px 14px;
}

.cb-26__row {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 16px 10px;
}

.cb-26__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.cb-26__box {
  --dx: 0px;
  --dy: 0px;
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 2px solid #c2c0d8;
  background: #fff;
  transform: translate(var(--dx),var(--dy));
  transition: transform .3s cubic-bezier(.3,1.2,.4,1),background .2s,border-color .2s;
}

.cb-26__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .2s,transform .2s cubic-bezier(.2,.9,.3,1.2);
  -webkit-mask: no-repeat center/15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask: no-repeat center/15px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.cb-26__input:checked ~ .cb-26__box {
  background: var(--accent);
  border-color: var(--accent);
}

.cb-26__input:checked ~ .cb-26__box::after {
  opacity: 1;
  transform: scale(1);
}

.cb-26__input:focus-visible ~ .cb-26__box {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.cb-26__label {
  font-size: 14.5px;
  color: #2d2a3d;
}

@media (prefers-reduced-motion: reduce) {
  .cb-26__box {
    transition: background .2s,border-color .2s;
    transform: none!important;
  }
}
```

## JavaScript
```js
(function(){
  var root = document.getElementById('cb-26');
  if(!root) return;
  if(matchMedia('(hover:none)').matches || matchMedia('(prefers-reduced-motion:reduce)').matches) return;
  var MAX = 6; // px of lean
  root.querySelectorAll('[data-magnet]').forEach(function(row){
    var box = row.querySelector('.cb-26__box');
    row.addEventListener('pointermove', function(e){
      var r = box.getBoundingClientRect();
      var cx = r.left + r.width/2, cy = r.top + r.height/2;
      var dx = Math.max(-MAX, Math.min(MAX, (e.clientX - cx) / 3));
      var dy = Math.max(-MAX, Math.min(MAX, (e.clientY - cy) / 3));
      box.style.setProperty('--dx', dx.toFixed(1) + 'px');
      box.style.setProperty('--dy', dy.toFixed(1) + 'px');
    });
    row.addEventListener('pointerleave', function(){
      box.style.setProperty('--dx','0px');
      box.style.setProperty('--dy','0px');
    });
  });
})();
```

How this works

The checkbox itself is a standard accessible control (sr-only input, sibling box, :checked styling). The magnetism is a progressive enhancement: a small script listens for pointermove within each control's hover zone, measures the cursor's offset from centre, and writes it to --dx/--dy custom properties clamped to a few pixels. CSS applies transform: translate(var(--dx),var(--dy)), so the box drifts toward the cursor; pointerleave resets the vars and it springs home via the transition.

Only transform moves — no layout, no repaint of siblings — so it stays at 60fps. The lean is disabled on touch (hover:none) and under prefers-reduced-motion, and the checkbox works identically with or without the effect (keyboard, Space, focus ring all intact).

This is the one micro-interaction that legitimately needs JS — you can't read cursor proximity in pure CSS.

Make it yours

  • Set the maximum lean distance (the clamp) in the script.
  • Change the spring-back feel via the box's transition cubic-bezier.
  • Widen/narrow the magnetic zone by padding the hover target.
  • Recolour checked state via --accent.

Gotchas — read before shipping

  • Guard with hover:none and prefers-reduced-motion — pointer-lean is meaningless on touch and unwanted for motion-sensitive users.
  • Only animate transform; never write layout properties from pointermove.
  • Keep the effect optional — the checkbox must be fully usable if the script never runs.

Browser support

ChromeSafariFirefoxEdge
111+15.4+113+111+

Floor set by oklch() as this demo is written. The core technique itself goes back further — Chrome 55+.

Pointer Events + CSS custom properties; the enhancement no-ops where unsupported.

Techniques used in this demo

Search CodeFronts

Loading…