当鼠标悬停在一个元素上时,用于控制光标样式的功能类。
<div class="cursor-auto ...">
Hover over this text
</div>
<div class="cursor-default ...">
Hover over this text
</div>
<div class="cursor-pointer ...">
Hover me
</div>
<div class="cursor-wait ...">
Hover me
</div>
<div class="cursor-text ...">
Hover me
</div>
<div class="cursor-move ...">
Hover me
</div>
<div class="cursor-not-allowed ...">
Hover me
</div>
默认情况下,Tailwind 提供了六个 cursor
功能。您可以通过编辑您的 Tailwind 配置中的 theme.cursor
部分来改变,添加或删除这些功能。
// tailwind.config.js
module.exports = {
theme: {
cursor: {
auto: 'auto',
default: 'default',
pointer: 'pointer',
- wait: 'wait',
text: 'text',
- move: 'move',
'not-allowed': 'not-allowed',
+ crosshair: 'crosshair',
+ 'zoom-in': 'zoom-in',
}
}
}
默认情况下, 针对 cursor 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 cursor
属性来控制为 cursor 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ cursor: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 cursor 功能,您可以通过在配置文件的 corePlugins
部分将 cursor
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ cursor: false,
}
}