고정 바닥글은 알림을 표시하는 데 널리 사용되는 방법입니다. 바닥글에 배치된 알림은 탐색 메뉴, 브랜드, 배너 광고와 같은 페이지 요소를 가릴 가능성이 작습니다. 또한 고정 바닥글은 페이지에 삽입될 때 레이아웃이 변경되지 않습니다.
<div id="banner" class="banner">
<button id="close-button" class="close-button" aria-label="close" tabindex="0">✕</button>
<div>
<h1>Notice</h1>
Lorem ipsum dolor sit amet.
</div>
</div>
body {
font-family: system-ui;
padding: 2em;
overscroll-behavior-y: none;
background-color: #f4f4f4;
}
.banner {
position: fixed;
left: 0;
bottom: 0;
right: 0;
padding: 1rem;
background-color: white;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.close-button {
background: transparent;
border: none;
padding: 1em;
font-size: 1em;
position: absolute;
right: 0;
top: 0;
cursor: pointer;
}
document.getElementById("close-button").onclick = () => {
document.getElementById("banner").style.display = "none";
}