-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.html
More file actions
61 lines (55 loc) · 2.34 KB
/
Copy pathdisplay.html
File metadata and controls
61 lines (55 loc) · 2.34 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Display — Event Stage</title>
<link rel="stylesheet" href="css/base.css" />
<link rel="stylesheet" href="css/transitions.css" />
<link rel="stylesheet" href="css/screens.css" />
</head>
<body>
<!-- 전환 효과 클래스(tr-fade/tr-slide/tr-zoom)는 display.js가 stage에 부여 -->
<div class="stage tr-fade" id="stage">
<!-- 대기 화면: 로고(우상단) + 자동 순환 슬라이드 + 후원사(하단) -->
<section class="screen" id="screen-standby">
<div class="ambient"></div>
<div class="corner-logo" id="standby-logo"></div>
<div class="slides" id="standby-slides"></div>
<div class="sponsors" id="standby-sponsors"></div>
</section>
<!-- 메인 화면: 대기 첫 번째(타이틀) 화면과 동일 + 로고/후원사 -->
<section class="screen" id="screen-main">
<div class="ambient"></div>
<div class="corner-logo"></div>
<div class="main-content" id="main-content"></div>
<div class="sponsors" data-always="true"></div>
</section>
<!-- 스피커 소개 -->
<section class="screen" id="screen-speaker">
<div class="ambient"></div>
<div class="corner-brand" id="speaker-brand"></div>
<div class="speaker-layout" id="speaker-card"></div>
</section>
<!-- 배경 화면 -->
<section class="screen" id="screen-background">
<div class="ambient"></div>
<div class="content">
<div class="bg-logo" id="bg-logo"></div>
<div class="bg-caption" id="bg-caption"></div>
</div>
</section>
<!-- 쉬는 시간 대기 화면: 로고 + 자동 순환 캐러셀 -->
<section class="screen" id="screen-break">
<div class="ambient"></div>
<div class="corner-logo"></div>
<div class="slides" id="break-slides"></div>
</section>
<!-- 오디오 잠금 안내 (첫 클릭/키 입력 시 사라짐) -->
<div class="sound-hint" id="sound-hint">🔈 화면을 한 번 클릭하면 소리가 켜집니다</div>
</div>
<script src="js/config.js"></script>
<script src="js/channel.js"></script>
<script src="js/display.js"></script>
</body>
</html>