Answer the question
In order to leave comments, you need to log in
How can I catch the event when sticky-top fires?
What you need: It is
necessary to make it so that after triggering sticky-top
this very block unfolds completely in height by 100%.
Hmm, I think I figured it out myself... See CodePen or:
<p>lorem128</p>
<div class="sticky-top bg-primary text-white float-left rounded-right border p-2" id="sticky">Menu
</div>
<div id="stPos" class="p-2 sticky-top bg-light rounded border float-right">
Menu coord:
</div>
<p>lorem2048</p>
let stPosID = document.getElementById("stPos");
let stickyID = document.getElementById("sticky");
window.addEventListener(
"scroll",
(e) => {
let gbcr = stickyID.getBoundingClientRect();
stPosID.innerText = "Menu coord: " + gbcr.y;
if (gbcr.y <= 0) {
stickyID.innerText = "Top 0 event!";
stickyID.style.height = "100vh";
} else if (gbcr.y > 0) {
stickyID.innerText = "Menu";
stickyID.style.height = "";
}
}
);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question