交互性
用于控制鼠标悬停在元素上时的光标样式的实用程序。
使用 cursor-*
实用程序来控制将鼠标悬停在元素上时显示哪个光标。
Hover over each button to see the cursor change
<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
来仅 在 focus应用 cursor-auto
.
<div class="cursor-not-allowed focus:cursor-auto">
<!-- ... -->
</div>
详细了解, 请参考 Hover, Focus, & Other States 文档.
您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:cursor-auto
来应用 cursor-auto
程序,适用于中等屏幕尺寸及以上。
<div class="cursor-not-allowed md:cursor-auto">
<!-- ... -->
</div>
默认情况下,Tailwind 包含许多内置选项的 cursor
实用程序。您可以通过编辑 tailwind.config.js
文件中的 theme.cursor
或 theme.extend.cursor
来自定义这些值。
module.exports = {
theme: {
extend: {
cursor: {
'fancy': 'url(hand.cur), pointer',
}
}
}
}
在 theme customization 文档中了解有关自定义默认主题的更多信息。
如果您需要使用一次性的 cursor
值,而该值没有必要包含在主题中,请使用方括号动态生成属性,使用任意值。
<div class="cursor-[url(hand.cur),_pointer]">
<!-- ... -->
</div>
进一步了解,请参考 任意值 文档.