3 个回答

sticky 定位,z-index 较低就完事了。

Sticky Practice - CodePen

.front {
  width: 100%;
  height: 80vh;
}

.sticky {
  position: sticky;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 80vh;
  background: orange;
  /* 画个 border 表现出它 sticky */
  border: 32px solid #666;
  box-sizing: border-box;
}

.back {
  width: 100%;
  height: 200vh;
  background: #000;
}
<div class="front"></div>
<div class="sticky"></div>
<div class="back"></div>

参阅:sticky - position - CSS | MDN

Fix 定位. 后面层级比前面高
直接用 scrollmagic

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题