質問編集履歴
2
コードを修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
<section id="sec_01">
|
66
66
|
|
67
|
-
sec
|
67
|
+
sec_01のコンテンツ
|
68
68
|
|
69
69
|
</section>
|
70
70
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
<section id="sec_02">
|
74
74
|
|
75
|
-
sec
|
75
|
+
sec_02のコンテンツ
|
76
76
|
|
77
77
|
</section>
|
78
78
|
|
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
<section id="sec_03">
|
82
82
|
|
83
|
-
sec
|
83
|
+
sec_03のコンテンツ
|
84
84
|
|
85
85
|
</section>
|
86
86
|
|
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
<section id="sec_04">
|
90
90
|
|
91
|
-
sec
|
91
|
+
sec_04のコンテンツ
|
92
92
|
|
93
93
|
</section>
|
94
94
|
|
@@ -96,7 +96,7 @@
|
|
96
96
|
|
97
97
|
<section id="sec_05">
|
98
98
|
|
99
|
-
sec
|
99
|
+
sec_05のコンテンツ
|
100
100
|
|
101
101
|
</section>
|
102
102
|
|
1
・言い回しについて修正しました・コードを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,16 +58,70 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
+
<div class="main-container">
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
<section id="sec_01">
|
66
|
+
|
67
|
+
section01のコンテンツ
|
68
|
+
|
69
|
+
</section>
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<section id="sec_02">
|
74
|
+
|
75
|
+
section02のコンテンツ
|
76
|
+
|
77
|
+
</section>
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
<section id="sec_03">
|
82
|
+
|
83
|
+
section03のコンテンツ
|
84
|
+
|
85
|
+
</section>
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
<section id="sec_04">
|
90
|
+
|
91
|
+
section04のコンテンツ
|
92
|
+
|
93
|
+
</section>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<section id="sec_05">
|
98
|
+
|
99
|
+
section05のコンテンツ
|
100
|
+
|
101
|
+
</section>
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
61
107
|
|
62
108
|
|
63
109
|
```
|
64
110
|
|
65
111
|
|
66
112
|
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
67
119
|
各sectionの座標を保存しておき、
|
68
120
|
|
69
|
-
スクロールがあったときは、jsで都度座標を取得して、
|
121
|
+
スクロールがあったときは、jsで都度座標を取得して、現在スクロールしているsectionに合わせて
|
70
122
|
|
71
|
-
|
123
|
+
該当のli(最初は非表示になっている)に表示するクラスを付与すればいいかと思うのですがどう書いたらいいのかわからず。。。
|
124
|
+
|
125
|
+
(例えば、スクロール位置が#sec_02のエリアにある場合、capture__item02のliを表示、他のliは非表示)
|
72
126
|
|
73
127
|
お知恵を拝借できますと幸いです、よろしくお願いいたします。
|