質問編集履歴
1
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,13 +1,135 @@
|
|
1
|
-
1枚目の
|
1
|
+
1枚目の、バラバラに囲っている4つの◯印を2枚目のように整えてほしいです
|
2
|
+
|
3
|
+
ほしいです。なお、受講者の名前、顔写真などがそれぞれの画像で違う人となっていますが、それは今回の質問とは関係ありません。
|
4
|
+
|
5
|
+
2枚目のソースコードを3言語すべて全文コピペした結果、1枚目のようになってしまいました。
|
2
6
|
|
3
7
|
|
4
8
|
|
5
|
-
2、3、4枚目の写真がソースコードです!
|
6
9
|
|
7
|
-
![イメージ説明](08e9209c4196884bd3e8e980bfa44f36.png)
|
8
10
|
|
9
|
-
![
|
11
|
+
![イメージ説明](129b2c104c70d257e2c34db621afaebd.png)
|
10
12
|
|
11
|
-
![イメージ説明](
|
13
|
+
![イメージ説明](372c6d0b37a604ab2d52af4e1d1d164d.png)
|
12
14
|
|
15
|
+
```HTML
|
16
|
+
|
17
|
+
<!--受講者の声ー-->
|
18
|
+
|
19
|
+
<h1 class="title">受講者の声</h1>
|
20
|
+
|
21
|
+
<div class="swiper-container">
|
22
|
+
|
23
|
+
<div class="swiper-wrapper">
|
24
|
+
|
25
|
+
<div class="swiper-slide"><img class="swiper-image" src="student1.png"></div>
|
26
|
+
|
27
|
+
<div class="swiper-slide"><img class="swiper-image" src="student2.png"></div>
|
28
|
+
|
29
|
+
<div class="swiper-slide"><img class="swiper-image" src="student3.png"></div>
|
30
|
+
|
31
|
+
<div class="swiper-slide"><img class="swiper-image" src="student4.png"></div>
|
32
|
+
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div class="swiper-button-prev"></div>
|
36
|
+
|
37
|
+
<div class="swiper-button-next"></div>
|
38
|
+
|
39
|
+
<div class="swiper-pagination"></div>
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/4.3.3/js/swiper.min.js"></script>
|
44
|
+
|
45
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
|
46
|
+
|
47
|
+
<script src="main.js"></script>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
```CSS
|
58
|
+
|
59
|
+
.swiper-container{
|
60
|
+
|
61
|
+
width: 70%;
|
62
|
+
|
63
|
+
margin: 0 auto;
|
64
|
+
|
65
|
+
}
|
66
|
+
|
67
|
+
.swiper-image{
|
68
|
+
|
69
|
+
width: 100%;
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
```
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
```JavaScript
|
78
|
+
|
79
|
+
$(function(){
|
80
|
+
|
13
|
-
|
81
|
+
$('.js-menu__item__link').each(function(){
|
82
|
+
|
83
|
+
$(this).on('click',function(){
|
84
|
+
|
85
|
+
$("+.submenu",this).slideToggle();
|
86
|
+
|
87
|
+
return false;
|
88
|
+
|
89
|
+
});
|
90
|
+
|
91
|
+
});
|
92
|
+
|
93
|
+
});
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
var mySwiper = new Swiper('.swiper-container', {
|
98
|
+
|
99
|
+
autoplay: {
|
100
|
+
|
101
|
+
delay: 5000,
|
102
|
+
|
103
|
+
stopOnLastSlide: false,
|
104
|
+
|
105
|
+
disableOnInteraction: false,
|
106
|
+
|
107
|
+
reverseDirection: false
|
108
|
+
|
109
|
+
},
|
110
|
+
|
111
|
+
navigation: {
|
112
|
+
|
113
|
+
nextEl: '.swiper-button-next',
|
114
|
+
|
115
|
+
prevEl: '.swiper-button-prev'
|
116
|
+
|
117
|
+
},
|
118
|
+
|
119
|
+
pagination: {
|
120
|
+
|
121
|
+
el: '.swiper-pagination',
|
122
|
+
|
123
|
+
type: 'bullets',
|
124
|
+
|
125
|
+
clickable: true
|
126
|
+
|
127
|
+
}
|
128
|
+
|
129
|
+
});
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
```
|