-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>가까운 공원 찾기</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Dongle&display=swap" rel="stylesheet">
</head>
<body>
<div id="page-container">
<h1>산책<br>가자</h1>
<section class="start-button-container">
<img src="background/playcircle.png" class="start-button" onclick="startApp()">
</section>
</div>
<script>
function startApp() {
const container = document.getElementById('page-container');
container.classList.add('slide-out'); // 슬라이드 아웃 클래스 추가
setTimeout(() => {
window.location.href = 'loading.html'; // 기존 프로그램의 HTML 파일명으로 변경
}, 1000); // 1초 후 페이지 전환
}
</script>
</body>
</html>