forked from gem-tanzanite/gem-tanzanite.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo_viewer.html
More file actions
51 lines (50 loc) · 1.89 KB
/
video_viewer.html
File metadata and controls
51 lines (50 loc) · 1.89 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
<!DOCTYPE html>
<html lang="ja-JP">
<head>
<meta charset="UTF-8" />
<title>Video Viewer</title>
</head>
<body>
<div class="video_app_content">
<div class="detail video_detail">
<header>
<div class="header_close_btn icon-button">
<i class="fa fa-times" aria-hidden="true"></i>
</div>
</header>
<div id="video_nav">
<div class="thumb_video" data-video-url="video/video_01.mp4">
<img src="img/video_thumb/video_01.webp" alt="" />
<div class="video_tit">Furry friend</div>
</div>
<div class="thumb_video" data-video-url="video/video_02.mp4">
<img src="img/video_thumb/video_02.webp" alt="" />
<div class="video_tit">Walking with my friend</div>
</div>
<div class="thumb_video" data-video-url="video/video_03.mp4">
<img src="img/video_thumb/video_03.webp" alt="" />
<div class="video_tit">In the field</div>
</div>
<div class="thumb_video" data-video-url="video/video_04.mp4">
<img src="img/video_thumb/video_04.webp" alt="" />
<div class="video_tit">Shonan Kanagawa</div>
</div>
<div class="thumb_video" data-video-url="video/video_05.mp4">
<img src="img/video_thumb/video_05.webp" alt="" />
<div class="video_tit">Ha Long Bay Vietnam</div>
</div>
<div class="thumb_video" data-video-url="video/video_06.mp4">
<img src="img/video_thumb/video_06.webp" alt="" />
<div class="video_tit">Amami Oshima</div>
</div>
</div>
</div>
<div class="video_play_window">
<div class="video_play_window_inner"></div>
<div class="detail_close_btn icon-button">
<i class="fa fa-times" aria-hidden="true"></i>
</div>
</div>
</div>
</body>
</html>