: [oopy] Migration 페이지 추가
•
Migration 페이지 추가
◦
3개의 데이터베이스의 Linked view database 형태로 모아둔 페이지
◦
데이터베이스는 토글로 분류하고 토글 전체 열기/닫기 버튼도 활용
토글 전체 열기/닫기 버튼 코드
<head>
<style>
.toggle-button {
padding: 5px 20px;
background-color: #319964;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<!-- 버튼 생성 -->
<button class="toggle-button" onclick="toggleAll()">토글 전체 열기/닫기</button>
<script>
// 모든 토글 블록 열고 닫기 함수
function toggleAll() {
// Notion 페이지에서 모든 토글 블록을 찾음
const toggles = document.querySelectorAll(".notion-toggle-block");
toggles.forEach(toggle => {
// 토글 블록 내부의 삼각형 아이콘 (토글 버튼)을 찾음
const toggleButton = toggle.querySelector("svg.triangle");
// 삼각형 아이콘이 존재하는지 확인 후 클릭 이벤트 트리거
if (toggleButton) {
toggleButton.parentElement.click();
}
});
}
</script>
</body>
HTML
복사