mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 17:16:25 +00:00
대시보드에 회의 예약 FAB 버튼 추가
- design/uiux/prototype/02-대시보드.html에 Floating Action Button 추가 - gappa 프로토타입 참조하여 회의 예약 바로가기 기능 구현 - 버튼 클릭 시 03-회의예약.html로 이동 - 모바일/데스크톱 모두 지원 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
3b004dc70b
commit
f3c382dfe0
@ -529,6 +529,9 @@
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
<!-- FAB (Floating Action Button) -->
|
||||
<button class="fab" id="fabButton" title="새 회의 예약">+</button>
|
||||
|
||||
<script src="common.js"></script>
|
||||
<script>
|
||||
/**
|
||||
@ -743,6 +746,13 @@
|
||||
console.log('대시보드 초기화 완료');
|
||||
}
|
||||
|
||||
/**
|
||||
* FAB 버튼 클릭 이벤트
|
||||
*/
|
||||
$('#fabButton').addEventListener('click', () => {
|
||||
navigateTo('03-회의예약.html');
|
||||
});
|
||||
|
||||
init();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user