快速参考

预览 
cursor-auto
cursor-default
cursor-pointer
cursor-wait
cursor-text
cursor-move
cursor-help
cursor-not-allowed
cursor-none
cursor-context-menu
cursor-progress
cursor-cell
cursor-crosshair
cursor-vertical-text
cursor-alias
cursor-copy
cursor-no-drop
cursor-grab
cursor-grabbing
cursor-all-scroll
cursor-col-resize
cursor-row-resize
cursor-n-resize
cursor-e-resize
cursor-s-resize
cursor-w-resize
cursor-ne-resize
cursor-nw-resize
cursor-se-resize
cursor-sw-resize
cursor-ew-resize
cursor-ns-resize
cursor-nesw-resize
cursor-nwse-resize
cursor-zoom-in
cursor-zoom-out

基本用法

设置光标样式

使用 cursor-{style} 来控制将鼠标悬停在元素上时显示的光标。

将鼠标悬停在每个按钮上,查看光标的变化

<button type="button" class="cursor-pointer ...">
  Submit
</button>
<button type="button" class="cursor-progress ...">
  Saving...
</button>
<button type="button" disabled class="cursor-not-allowed ...">
  Confirm
</button>

条件应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 focus:cursor-auto 仅在聚焦时应用 cursor-auto 实用程序。

<div class="cursor-not-allowed focus:cursor-auto">
  <!-- ... -->
</div>

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

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、 prefers-reduced-motion 等等。例如,使用 md:cursor-auto 仅在中等屏幕尺寸及以上时应用 cursor-auto 实用程序。

<div class="cursor-not-allowed md:cursor-auto">
  <!-- ... -->
</div>

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


使用自定义值

自定义您的主题

默认情况下,Tailwind 包含许多内置选项的 `cursor` 实用程序。您可以通过编辑 `tailwind.config.js` 文件中的 `theme.cursor` 或 `theme.extend.cursor` 来自定义这些值。

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      cursor: {
        'fancy': 'url(hand.cur), pointer',
      }
    }
  }
}

了解有关自定义默认主题的更多信息,请参阅 主题自定义 文档。

任意值

如果您需要使用一个不适合包含在主题中的 `cursor` 值,请使用方括号使用任何任意值动态生成属性。

<div class="cursor-[url(hand.cur),_pointer]">
  <!-- ... -->
</div>

了解有关任意值支持的更多信息,请参阅 任意值 文档。