質問編集履歴
3
css追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -268,54 +268,126 @@
|
|
268
268
|
|
269
269
|
|
270
270
|
|
271
|
+
|
272
|
+
|
273
|
+
--- タブ切り替えCSS ---
|
274
|
+
|
271
275
|
```ここに言語を入力
|
272
276
|
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
277
|
+
/*タブ切り替え全体のスタイル*/
|
278
|
+
|
279
|
+
.tabs {
|
280
|
+
|
281
|
+
margin-top: 50px;
|
282
|
+
|
283
|
+
padding-bottom: 40px;
|
284
|
+
|
285
|
+
background-color: #282F39;
|
286
|
+
|
287
|
+
width: 100%;
|
288
|
+
|
289
|
+
margin: 0 auto;}
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
/*タブのスタイル*/
|
294
|
+
|
295
|
+
.tab_item {
|
296
|
+
|
297
|
+
width: calc(100%/6);
|
298
|
+
|
299
|
+
height: 80px;
|
300
|
+
|
301
|
+
border-bottom: 3px solid #282F39;
|
302
|
+
|
303
|
+
background-color: #ECECEC;
|
304
|
+
|
305
|
+
line-height: 50px;
|
306
|
+
|
307
|
+
font-size: 20px;
|
308
|
+
|
309
|
+
text-align: center;
|
310
|
+
|
311
|
+
display: block;
|
312
|
+
|
313
|
+
float: left;
|
314
|
+
|
315
|
+
text-align: center;
|
316
|
+
|
317
|
+
font-weight: bold;
|
318
|
+
|
319
|
+
transition: all 0.2s ease;
|
320
|
+
|
321
|
+
color: #282F39;
|
322
|
+
|
323
|
+
padding-top: 15px;
|
324
|
+
|
325
|
+
}
|
326
|
+
|
327
|
+
.tab_item:hover {
|
328
|
+
|
329
|
+
opacity: 0.75;
|
330
|
+
|
331
|
+
}
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
/*ラジオボタンを全て消す*/
|
336
|
+
|
337
|
+
input[name="tab_item"] {
|
338
|
+
|
339
|
+
display: none;
|
340
|
+
|
341
|
+
}
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
/*タブ切り替えの中身のスタイル*/
|
346
|
+
|
347
|
+
.tab_content {
|
348
|
+
|
349
|
+
display: none;
|
350
|
+
|
351
|
+
padding: 40px 0 0;
|
352
|
+
|
353
|
+
clear: both;
|
354
|
+
|
355
|
+
overflow: hidden;
|
356
|
+
|
357
|
+
}
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
|
362
|
+
|
363
|
+
/*選択されているタブのコンテンツのみを表示*/
|
364
|
+
|
365
|
+
#onsen:checked ~ #onsen_content,
|
366
|
+
|
367
|
+
#kankou:checked ~ #kankou_content,
|
368
|
+
|
369
|
+
#resort:checked ~ #resort_content,
|
370
|
+
|
371
|
+
#gurmet:checked ~ #gurmet_content,
|
372
|
+
|
373
|
+
#family:checked ~ #family_content,
|
374
|
+
|
375
|
+
#group:checked ~ #group_content {
|
376
|
+
|
377
|
+
display: block;
|
378
|
+
|
379
|
+
}
|
380
|
+
|
381
|
+
|
382
|
+
|
383
|
+
/*選択されているタブのスタイルを変える*/
|
384
|
+
|
385
|
+
.tabs input:checked + .tab_item {
|
386
|
+
|
387
|
+
background-color: #282F39;
|
388
|
+
|
389
|
+
color: #fff;
|
390
|
+
|
391
|
+
}
|
320
392
|
|
321
393
|
```
|
2
コード追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -265,3 +265,57 @@
|
|
265
265
|
どなたかご教授いただける方がおりましたら
|
266
266
|
|
267
267
|
宜しくお願い致します。
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
```ここに言語を入力
|
272
|
+
|
273
|
+
<div class="tabs">
|
274
|
+
|
275
|
+
<input id="onsen" type="radio" name="tab_item" checked>
|
276
|
+
|
277
|
+
<label class="tab_item" for="onsen">温泉</label>
|
278
|
+
|
279
|
+
<input id="kankou" type="radio" name="tab_item">
|
280
|
+
|
281
|
+
<label class="tab_item" for="kankou">観光</label>
|
282
|
+
|
283
|
+
<input id="resort" type="radio" name="tab_item">
|
284
|
+
|
285
|
+
<label class="tab_item" for="resort">ビーチ & リゾート</label>
|
286
|
+
|
287
|
+
<input id="gurmet" type="radio" name="tab_item">
|
288
|
+
|
289
|
+
<label class="tab_item" for="gurmet">グルメ</label>
|
290
|
+
|
291
|
+
<input id="family" type="radio" name="tab_item">
|
292
|
+
|
293
|
+
<label class="tab_item" for="family">ファミリー</label>
|
294
|
+
|
295
|
+
<input id="group" type="radio" name="tab_item">
|
296
|
+
|
297
|
+
<label class="tab_item" for="group">団体 & MICE</label>
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
<!-- 温泉 -->
|
302
|
+
|
303
|
+
<div class="tab_content" id="onsen_content">
|
304
|
+
|
305
|
+
<div class="tab_content_description">
|
306
|
+
|
307
|
+
<div>
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
<p class="title_sub fff">ONSEN</p>
|
312
|
+
|
313
|
+
<h2 class="fff">温泉</h2>
|
314
|
+
|
315
|
+
<div class="experience_base">
|
316
|
+
|
317
|
+
<h3>国内</h3>
|
318
|
+
|
319
|
+
</div>
|
320
|
+
|
321
|
+
```
|
1
タグ付けの誤り修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
不動産内製化で制作の為、
|
1
|
+
不動産内製化で制作の為、WEB制作の知識がなく
|
2
2
|
|
3
3
|
ご教授いただきたく存じます。
|
4
4
|
|