1. 交互
  2. 滚动行为

Quick reference

属性
scroll-autoscroll-behavior: auto;
scroll-smoothscroll-behavior: smooth;

基本用法

¥Basic usage

添加平滑滚动

¥Adding smooth scrolling

使用 scroll-smooth 工具可以在元素内实现平滑滚动。

¥Use the scroll-smooth utility to enable smooth scrolling within an element.

<html class="scroll-smooth">
  <!-- ... -->
</html>

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用focus:scroll-auto 仅在 focus 时应用 scroll-auto 工具。

<html class="scroll-smooth focus:scroll-auto">
  <!-- ... -->
</html>

有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。

断点和媒体查询

你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:scroll-auto 仅在中等屏幕尺寸及以上时应用 scroll-auto 工具。

<html class="scroll-smooth md:scroll-auto">
  <!-- ... -->
</html>

要了解更多信息,请查看有关 响应式设计暗黑模式、以及 其他媒体查询修饰符 的文档。