-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path21-interactive-attribute.html
More file actions
executable file
·40 lines (39 loc) · 1.53 KB
/
Copy path21-interactive-attribute.html
File metadata and controls
executable file
·40 lines (39 loc) · 1.53 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>인터렉티브 속성</title>
<link rel="stylesheet" href="./style/peak-time.css" />
<script src="./js/peak-time.js" defer></script>
</head>
<body>
<h1>유저 인터렉션 속성</h1>
<div class="voting-result-wrapper">
<!-- mac : ctrl + option + p -->
<button type="button" class="voting-result-button" accesskey="P">피크타임 Top6 결과 보기</button>
<div class="voting-result" hidden>
<ol>
<li>팀 11시 - VANNER</li>
<li>팀 7시 - MASC</li>
<li>팀 8시 - 다크비</li>
<li>팀 24시 - B.A.P, 탑독, 비아이지, ARGON</li>
<li>팀 13시 - BAE173</li>
<li>팀 20시 - 몬트</li>
</ol>
</div>
<div tabindex="0" class="voting-result" hidden>
<ul class="voting-result-vedio">
<li><a href="https://vod.jtbc.co.kr/player/embed/VO10679813">피크타임 1,2위 영상</a></li>
<li><a href="https://vod.jtbc.co.kr/player/embed/VO10679810" tabindex="-1">피크타임 3,4위 영상</a></li>
<li><a href="https://vod.jtbc.co.kr/player/embed/VO10679807">피크타임 5,6위 영상</a></li>
</ul>
</div>
</div>
<figure>
<img src="./images/peaktime.jpeg" alt="피크타임 매주 수요일 밤 10시 30분 방송" />
<figcaption class="user-caption" contenteditable>PEAK TIME</figcaption>
</figure>
</body>
</html>