Spinner Wheel
Random
An animated decision wheel for picking from a list when a coin flip isn't enough. Each line in the box becomes a slice; the pointer is at the top. The spin uses `crypto.getRandomValues` (genuinely uniform) but eases out for a satisfying 4.5-second deceleration. Turn on remove-winner mode for raffles, secret-santa drawings, or any sequence where the same name shouldn't come up twice. The last twenty winners stay in the history strip until you clear them.
How to use
- Put each option on its own line (food choices, names, tasks — whatever).
- Hit Spin and let the wheel decelerate to land on the winner.
- Enable remove-after-winning for raffle-style draws where each name should win at most once.
Frequently asked questions
- Is the spin biased toward any slice?
- No. The landing angle is picked from `crypto.getRandomValues` before the animation runs. The deceleration easing is purely cosmetic — the result is decided up-front.
- Why does long text get cut off?
- Slice labels are clipped at 18 characters to keep the wheel readable. The full text still appears in the winner banner and history list.
Related tools
Random Number Generator
Generate cryptographically random numbers in any range — with or without duplicates, optionally sorted.
Group Maker
Split a list of names into balanced random groups — pick the group count or the people per group.
Raffle Draw
Pick N winners from a list of names — cryptographically random, with or without duplicates.
Dice & Coin Roller
Roll polyhedral dice (d4–d100) or flip a coin with cryptographic randomness.
Random Picker — Roulette & Ladder
Pick a winner with a spinning wheel or a ladder (ghost-leg) draw.
Password Generator
Generate strong, random passwords that never leave your browser.