<div class="segmented-control">
<input type="radio" name="view" id="daily" checked>
<label for="daily">Daily</label>
<input type="radio" name="view" id="weekly">
<label for="weekly">Weekly</label>
<input type="radio" name="view" id="monthly">
<label for="monthly">Monthly</label>
<div class="slider"></div>
</div>
Back to Snippets
Segmented Control Toggle
Replace standard radio buttons with this sleek segmented control, commonly found in iOS interfaces. It uses a sliding background pill to indicate selection, which provides a premium user experience.
383