Mosaic컴포넌트 카탈로그Repository
← 카탈로그
radio-buttons

Tab Glider Radio

#radio#tabs#glider#notification
의존성
없음 (순수 HTML/CSS/JS)
추가일
2026-06-11
출처
원본 보기 ↗
라이브 미리보기새 탭에서 열기 ↗
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>tab-glider-radio</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
	<div class="tabs">
		<input type="radio" id="radio-1" name="tabs" checked="">
		<label class="tab" for="radio-1">Hello<span class="notification">2</span></label>
		<input type="radio" id="radio-2" name="tabs">
		<label class="tab" for="radio-2">UI</label>
		<input type="radio" id="radio-3" name="tabs">
		<label class="tab" for="radio-3">World</label>
		<span class="glider"></span>
	</div>
</div>
</body>
</html>