JQuery window scrolling event?

前端 未结 3 1469
清歌不尽
清歌不尽 2020-12-13 23:28

I have an ad in my header and a fixed ad at the bottom of my page that is always there. I want the fixed ad to appear only if the user has scrolled under the header ad. I lo

3条回答
  •  有刺的猬
    2020-12-14 00:13

    Check if the user has scrolled past the header ad, then display the footer ad.

    if($(your header ad).position().top < 0) { $(your footer ad).show() }

    Am I correct at what you are looking for?

提交回复
热议问题