左右随屏动画实现

问题:页面中的左右按钮会随着页面滑动而出现和消失。

解答:

采用 IntersectionObserver API 来检测页面上某个元素是否出现在屏幕中,从而控制左右按钮的显示和隐藏。

代码范例:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>左右随屏动画</title>
  <style>
    body {
      margin: 0;
      padding: 0;
    }

    .container {
      display: flex;
    }

    .left-panel {
      background: #ccc;
      width: 200px;
      height: 100vh;
      position: sticky;
      left: 0;
      top: 0;
    }

    .right-panel {
      flex: 1;
      background: #eee;
      height: 100vh;
      overflow: scroll;
    }

    .end-marker {
      position: absolute;
      bottom: 0;
      width: 1px;
      height: 1px;
    }
  </style>
</head>
<body>
  

左侧面板

右侧面板

[removed] const leftPanel = document.querySelector('.left-panel'); const endMarker = document.querySelector('.end-marker'); const observer = new IntersectionObserver((entries, observer) => { if (entries[0].isIntersecting) { leftPanel.style.display = 'none'; } else { leftPanel.style.display = ''; } }); observer.observe(endMarker); [removed] </body> </html>
登录后复制

工作原理:

  1. 使用 IntersectionObserver 创建一个观察器。
  2. 将观察器绑定到页面底部的一个元素,例如 endMarker。
  3. 当 endMarker 进入或离开屏幕时,观察器会触发 isIntersecting 回调函数。
  4. 根据 endMarker 的可见性,显示或隐藏左侧面板。

注意:

  • rootMargin 允许指定观察元素周围的额外区域,以在进入或离开屏幕之前触发回调函数。
  • threshold 允许指定观察元素可见区域的百分比,以触发回调函数。

以上就是如何实现页面滚动时左右按钮的显示和隐藏?的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部