1. 交互
  2. 光标

交互

光标

用于控制悬停在元素上时光标样式的工具。

ClassStyles
cursor-auto
cursor: auto;
cursor-default
cursor: default;
cursor-pointer
cursor: pointer;
cursor-wait
cursor: wait;
cursor-text
cursor: text;
cursor-move
cursor: move;
cursor-help
cursor: help;
cursor-not-allowed
cursor: not-allowed;
cursor-none
cursor: none;
cursor-context-menu
cursor: context-menu;

示例

基本示例

使用像 cursor-pointercursor-grab 这样的工具来控制悬停在元素上时显示哪个光标:

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

<button class="cursor-pointer ...">提交</button>
<button class="cursor-progress ...">保存中...</button>
<button class="cursor-not-allowed ..." disabled>确认</button>

使用自定义值

Use the cursor-[<value>] syntax to set the cursor based on a completely custom value:

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

For CSS variables, you can also use the cursor-(<custom-property>) syntax:

<button class="cursor-(--my-cursor) ...">
<!-- ... -->
</button>

This is just a shorthand for cursor-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a cursor utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

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

Learn more about using variants in the variants documentation.