1. 交互
  2. 触摸动作

Quick reference

属性
touch-autotouch-action: auto;
touch-nonetouch-action: none;
touch-pan-xtouch-action: pan-x;
touch-pan-lefttouch-action: pan-left;
touch-pan-righttouch-action: pan-right;
touch-pan-ytouch-action: pan-y;
touch-pan-uptouch-action: pan-up;
touch-pan-downtouch-action: pan-down;
touch-pinch-zoomtouch-action: pinch-zoom;
touch-manipulationtouch-action: manipulation;

基本用法

¥Basic usage

设置触摸动作

¥Setting the touch action

使用 touch-* 工具来控制元素如何在触摸屏上滚动(平移)和缩放(收缩)。

¥Use the touch-* utilities to control how an element can be scrolled (panned) and zoomed (pinched) on touchscreens.

尝试在触摸屏上平移这些图片

touch-auto

touch-none

touch-pan-x

touch-pan-y

<div class="w-full h-48 overflow-auto touch-auto ...">
  <img class="w-[150%] max-w-none h-auto" src="..." />
</div>
<div class="w-full h-48 overflow-auto touch-none ...">
  <img class="w-[150%] max-w-none h-auto" src="..." />
</div>
<div class="w-full h-48 overflow-auto touch-pan-x ...">
  <img class="w-[150%] max-w-none h-auto" src="..." />
</div>
<div class="w-full h-48 overflow-auto touch-pan-y ...">
  <img class="w-[150%] max-w-none h-auto" src="..." />
</div>

有条件地应用

悬停、聚焦和其他状态

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

<div class="focus:touch-pan-x">
  <!-- ... -->
</div>

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

断点和媒体查询

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

<div class="md:touch-pan-x">
  <!-- ... -->
</div>

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