-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile_mobile.html
63 lines (51 loc) · 2.4 KB
/
profile_mobile.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PORTFOLIO - 내 프로필</title>
<link rel="apple-touch-icon" sizes="180x180" href="./res/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./res/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./res/favicons/favicon-16x16.png">
<link rel="shortcut icon" href="./res/favicons/favicon.ico" type="image/x-icon">
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="./style/root.css">
<link rel="stylesheet" href="./style/boot.css">
<link rel="stylesheet" href="./style/profile_mobile.css">
<script src="./scripts/AudioEngine.js"></script>
<script src="./scripts/profile_mobile.js"></script>
<script src="./scripts/TimeEngine.js"></script>
<script src="./scripts/root.js"></script>
</head>
<body>
<audio></audio>
<div class="main-container drag-block mobile-agent">
<!-- 비율 제한 컨테이너 -->
<div class="mobile-container background-image">
<div class="boot-screen boot-screen-close-1500ms">
<div class="boot-logo background-image"></div>
</div>
<!-- 콘텐츠 영역 -->
<div class="mobile-content-container">
<!-- 상단 라벨 -->
<div class="top-label">
<div class="time-label"></div>
<div class="top-icon background-image"></div>
</div>
<!-- 하단 독 -->
<div class="bottom-dock">
<div onclick="//show_app('contact');" class="dock-item background-image contact-icon"></div>
<div onclick="show_app('lang_stack');" class="dock-item background-image langstack-icon"></div>
<div onclick="//show_app('tech_stack');" class="dock-item background-image techstack-icon"></div>
<div onclick="//show_app('memo');" class="dock-item background-image memo-icon"></div>
</div>
<!-- 애플리케이션 영역 -->
<div class="app-area">
<iframe></iframe>
</div>
</div>
</div>
<div class="mobile-container-border background-image"></div>
</div>
</body>
</html>