回答編集履歴

1

説明不足

2018/11/06 04:03

投稿

marshmallowy
marshmallowy

スコア204

test CHANGED
@@ -2,7 +2,73 @@
2
2
 
3
3
 
4
4
 
5
- ```jQuery
5
+ ```CODE
6
+
7
+ <!DOCTYPE html>
8
+
9
+ <html lang="ja">
10
+
11
+ <head>
12
+
13
+ <meta charset="UTF-8">
14
+
15
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
16
+
17
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
18
+
19
+ <meta name="description" content=""/>
20
+
21
+ <title>Title</title>
22
+
23
+ </head>
24
+
25
+ <body>
26
+
27
+ <div class="thumb_area">
28
+
29
+ <div class="thumbnail">
30
+
31
+ <a href="#" data-lightbox="group">
32
+
33
+ <img src="http://satyr.io/400x80">
34
+
35
+ </a>
36
+
37
+ <p>写真1の説明が入ります。</p>
38
+
39
+ </div>
40
+
41
+ <div class="thumbnail">
42
+
43
+ <a href="#" data-lightbox="group">
44
+
45
+ <img src="http://satyr.io/400x80">
46
+
47
+ </a>
48
+
49
+ <p>写真2の説明が入ります。</p>
50
+
51
+ </div>
52
+
53
+ <div class="thumbnail">
54
+
55
+ <a href="#" data-lightbox="group">
56
+
57
+ <img src="http://satyr.io/400x80">
58
+
59
+ </a>
60
+
61
+ <p>写真3の説明が入ります。</p>
62
+
63
+ </div>
64
+
65
+ </div>
66
+
67
+ <script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
68
+
69
+
70
+
71
+ <script>
6
72
 
7
73
  $(function(){
8
74
 
@@ -20,4 +86,10 @@
20
86
 
21
87
  });
22
88
 
89
+ </script>
90
+
91
+ </body>
92
+
93
+ </html>
94
+
23
95
  ```