質問編集履歴
1
具体的内容に修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -221,15 +221,26 @@
|
|
221
221
|
|
222
222
|
```
|
223
223
|
|
224
|
-
このソースで
|
225
|
-
<a id="fixed-offer-start" href="#fixed-offer-start"></a>
|
226
|
-
で表示開始
|
227
224
|
|
225
|
+
## position: fixed;で追従させる要素
|
226
|
+
`<div class="fixed-cta" id="fixed-cta">
|
228
|
-
<
|
227
|
+
<a class="fixed-cta_button"><img src="img/float.png"></a>
|
228
|
+
</div>`
|
229
|
+
|
229
230
|
|
230
|
-
の位置で非表示にしたいのですが動作せず、
|
231
|
-
|
231
|
+
## 何をどこで表示開始、非表示にさせるか
|
232
|
+
`<div class="fixed-cta" id="fixed-cta">
|
233
|
+
<a class="fixed-cta_button"><img src="img/float.png"></a>
|
234
|
+
</div>`
|
235
|
+
を
|
236
|
+
`<a id="fixed-offer-start" href="#fixed-offer-start"></a>`
|
237
|
+
で1度表示開始
|
238
|
+
`</div><a id="fixed-offer-end" href="#fixed-offer-end"></a>`
|
239
|
+
のタグ地点で上記追従要素を非表示
|
232
240
|
|
241
|
+
## エラーメッセージ・具体的な不具合
|
233
|
-
|
242
|
+
追従の要素が指定の範囲で表示・非表示されない(指定の範囲は上記の通り)
|
243
|
+
そもそも追従要素すら表示されない
|
234
244
|
|
245
|
+
|
235
|
-
|
246
|
+
詳しい方ご教授いただけますと幸いです。
|