質問編集履歴
2
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -164,6 +164,46 @@
|
|
164
164
|
|
165
165
|
|
166
166
|
|
167
|
+
どのバージョンか大事になるとみたのでこちらのバージョンを指定しています。
|
168
|
+
|
169
|
+
```application.html.haml
|
170
|
+
|
171
|
+
!!!
|
172
|
+
|
173
|
+
%html
|
174
|
+
|
175
|
+
%head
|
176
|
+
|
177
|
+
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
178
|
+
|
179
|
+
%title Portfolio
|
180
|
+
|
181
|
+
= csrf_meta_tags
|
182
|
+
|
183
|
+
= csp_meta_tag
|
184
|
+
|
185
|
+
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
|
186
|
+
|
187
|
+
= javascript_include_tag 'application'
|
188
|
+
|
189
|
+
%link{:href => "https://cdnjs.cloudflare.com/ajax/libs/Swiper/5.3.7/css/swiper.min.css", :rel => "stylesheet"}/
|
190
|
+
|
191
|
+
%script{:src => "https://code.jquery.com/jquery-3.3.1.js"}
|
192
|
+
|
193
|
+
%script{:src => "https://cdnjs.cloudflare.com/ajax/libs/Swiper/6.4.5/swiper-bundle.min.js"}
|
194
|
+
|
195
|
+
%body
|
196
|
+
|
197
|
+
= yield
|
198
|
+
|
199
|
+
```
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
|
206
|
+
|
167
207
|
HTMLに変換したら何か見えてくるのではないかとご指摘ありましたので変換したコードを貼っておきます。
|
168
208
|
|
169
209
|
|
1
htmlに変更したコードを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,7 +98,9 @@
|
|
98
98
|
|
99
99
|
JSの
|
100
100
|
|
101
|
+
```
|
102
|
+
|
101
|
-
|
103
|
+
var mySwiper = new Swiper ('.categorys-book'
|
102
104
|
|
103
105
|
```
|
104
106
|
|
@@ -107,3 +109,63 @@
|
|
107
109
|
こちらのクラス名を全て当てはめてみても何も変わらないです。。。
|
108
110
|
|
109
111
|
どなたかご教授お願い致します。
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
#追記
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
```index.html.haml
|
120
|
+
|
121
|
+
<div class='Content'>
|
122
|
+
|
123
|
+
<div class='Content__like'>
|
124
|
+
|
125
|
+
<h2>オススメ一覧</h2>
|
126
|
+
|
127
|
+
<div class='Content__like__end'>
|
128
|
+
|
129
|
+
フロントエンド編
|
130
|
+
|
131
|
+
<div class='Content__like__end__swiper-container'>
|
132
|
+
|
133
|
+
<div class='Content__like__end__swiper-container__wrapper'>
|
134
|
+
|
135
|
+
<div class='Content__like__end__swiper-container__wrapper__slide'>
|
136
|
+
|
137
|
+
</div>
|
138
|
+
|
139
|
+
<div class='Content__like__end__swiper-container__wrapper__slide'>
|
140
|
+
|
141
|
+
</div>
|
142
|
+
|
143
|
+
<div class='Content__like__end__swiper-container__wrapper__slide'>
|
144
|
+
|
145
|
+
</div>
|
146
|
+
|
147
|
+
</div>
|
148
|
+
|
149
|
+
<div class='Content__like__end__swiper-container__swiper-button-prev'></div>
|
150
|
+
|
151
|
+
<div class='Content__like__end__swiper-container__swiper-button-next'></div>
|
152
|
+
|
153
|
+
<div class='Content__like__end__swiper-container__swiper-pagination'></div>
|
154
|
+
|
155
|
+
</div>
|
156
|
+
|
157
|
+
</div>
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
</div>
|
162
|
+
|
163
|
+
```
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
HTMLに変換したら何か見えてくるのではないかとご指摘ありましたので変換したコードを貼っておきます。
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
どなたかお願い致します。。。
|