質問編集履歴
2
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,3 +25,61 @@
|
|
25
25
|
|
26
26
|
|
27
27
|
またnavigationなどを設定しても表示されず、position,tooltips,colorなども反映されていないのですが、これも解決策はあるのでしょうか?
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
```ここに言語を入力
|
32
|
+
|
33
|
+
HTML
|
34
|
+
|
35
|
+
<div id="multiscroll">
|
36
|
+
|
37
|
+
<div class="ms-left">
|
38
|
+
|
39
|
+
<div class="ms-section">セクション1(左)</div>
|
40
|
+
|
41
|
+
<div class="ms-section">セクション2(左)</div>
|
42
|
+
|
43
|
+
<div class="ms-section">セクション3(左)</div>
|
44
|
+
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div class="ms-right">
|
48
|
+
|
49
|
+
<div class="ms-section">セクション1(右)</div>
|
50
|
+
|
51
|
+
<div class="ms-section">セクション2(右)</div>
|
52
|
+
|
53
|
+
<div class="ms-section">セクション3(右)</div>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
CSS
|
62
|
+
|
63
|
+
.ms-section {
|
64
|
+
|
65
|
+
text-align:center;
|
66
|
+
|
67
|
+
color: #7ECCDE;
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
.ms-left{
|
74
|
+
|
75
|
+
background-color: #06304f;
|
76
|
+
|
77
|
+
}
|
78
|
+
|
79
|
+
.ms-right{
|
80
|
+
|
81
|
+
background-color: #010102;
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
```
|
1
不明点の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,3 +21,7 @@
|
|
21
21
|
sectionsColor: ['#010102', '#06304f', '#010102', '#06304f', '#010102','#06304f'],
|
22
22
|
|
23
23
|
```
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
またnavigationなどを設定しても表示されず、position,tooltips,colorなども反映されていないのですが、これも解決策はあるのでしょうか?
|