Skip to content

使用 CSS 实现滚动吸附效果

Published:

实现方式

CSS 吸附效果使用 scroll-snap 属性来控制滚动时元素如何对齐。这种效果可以在水平或垂直滚动容器中使用,并且非常适合制作具有滑动效果的内容区域,例如图像画廊或分页组件。

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Dynamic Image Patterns</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <div class="container">
      <div class="item item-1">1</div>
      <div class="item item-2">2</div>
      <div class="item item-3">3</div>
      <div class="item item-4">4</div>
    </div>
  </body>
</html>
.container {
  display: flex;
  height: 300px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.container::-webkit-scrollbar {
  width: 0;
}

.item {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  scroll-snap-align: center; /* 元素中心对齐 */
  scroll-snap-stop: always; /* 强制停留在吸附点 */
}

.item-1 {
  background: lightgrey;
}

.item-2 {
  background: lightpink;
}

.item-3 {
  background: lightblue;
}

.item-4 {
  background: lightgreen;
}

Scroll-snap 属性扩展

1. scroll-snap-type

2. scroll-snap-align

3. scroll-snap-stop