닫기 기능
Coddy의 사이드바 | 프론트엔드 프로젝트 코스 레슨 — 13개 중 12번째.
스타일링이 완료되었으니, 클릭 기능을 추가해 봅시다!
챌린지
쉬움javascript 모듈에서 id '#closeSidebarBtn'을 대상으로 지정하고, 이를 클릭하면 'sidebar' 클래스의 right 속성을 -250px로 설정하세요.
직접 해보기
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Mobile Sidebar</title>
</head>
<body>
<button id="openSidebarBtn">Open</button>
<div id="sidebar" class="sidebar">
<button id="closeSidebarBtn">Close</button>
<!-- Your sidebar content goes here -->
<p>Home</p>
<p>About</p>
<p>Services</p>
<p>Contact</p>
</div>
<script src="script.js"></script>
</body>
</html>
사이드바 | 프론트엔드 프로젝트의 모든 레슨
1소개
무엇을 만들게 될까요?