交互
用于控制元素滚动行为的工具。
¥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>