forked from gem-tanzanite/gem-tanzanite.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphoto_viewer.html
More file actions
78 lines (78 loc) · 3.28 KB
/
photo_viewer.html
File metadata and controls
78 lines (78 loc) · 3.28 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="ja-JP">
<head>
<meta charset="UTF-8" />
<title>Power Viewer</title>
</head>
<body>
<div class="detail photo_detail">
<div class="container_detail">
<div class="slider_wrapper">
<div id="slider">
<img src="img/photo/photo_0.jpg" alt="写真1" />
<img src="img/photo/photo_1.jpg" alt="写真2" />
<img src="img/photo/photo_2.jpg" alt="写真3" />
<img src="img/photo/photo_3.jpg" alt="写真4" />
<img src="img/photo/photo_4.jpg" alt="写真5" />
<img src="img/photo/photo_5.jpg" alt="写真6" />
<img src="img/photo/photo_6.jpg" alt="写真7" />
<img src="img/photo/photo_7.jpg" alt="写真8" />
<img src="img/photo/photo_8.jpg" alt="写真9" />
<img src="img/photo/photo_9.jpg" alt="写真10" />
<img src="img/photo/photo_10.jpg" alt="写真11" />
<img src="img/photo/photo_11.jpg" alt="写真12" />
</div>
<div id="photo_nav">
<header class="detail_header">
<div class="transition_selector">
<span>Transition</span>
<span id="transition_selection"></span>
</div>
<button class="header_close_btn icon-button">
<i class="fa fa-times" aria-hidden="true"></i>
</button>
</header>
<div class="thumbnail-list" role="tablist">
<button role="tab" aria-label="写真1" aria-selected="true">
<img src="img/photo/photo_0.jpg" alt="写真1" />
</button>
<button role="tab" aria-label="写真2">
<img src="img/photo/photo_1.jpg" alt="写真2" />
</button>
<button role="tab" aria-label="写真3">
<img src="img/photo/photo_2.jpg" alt="写真3" />
</button>
<button role="tab" aria-label="写真4">
<img src="img/photo/photo_3.jpg" alt="写真4" />
</button>
<button role="tab" aria-label="写真5">
<img src="img/photo/photo_4.jpg" alt="写真5" />
</button>
<button role="tab" aria-label="写真6">
<img src="img/photo/photo_5.jpg" alt="写真6" />
</button>
<button role="tab" aria-label="写真7">
<img src="img/photo/photo_6.jpg" alt="写真7" />
</button>
<button role="tab" aria-label="写真8">
<img src="img/photo/photo_7.jpg" alt="写真8" />
</button>
<button role="tab" aria-label="写真9">
<img src="img/photo/photo_8.jpg" alt="写真9" />
</button>
<button role="tab" aria-label="写真10">
<img src="img/photo/photo_9.jpg" alt="写真10" />
</button>
<button role="tab" aria-label="写真11">
<img src="img/photo/photo_10.jpg" alt="写真11" />
</button>
<button role="tab" aria-label="写真12">
<img src="img/photo/photo_11.jpg" alt="写真12" />
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>