交互
用于优化即将发生变化的元素动画的工具。
¥Basic usage
¥Optimizing with will change
使用 will-change-scroll
、will-change-contents
和 will-change-transform
通过指示浏览器在实际开始之前准备必要的动画来优化预计在不久的将来会发生变化的元素。
¥Use will-change-scroll
, will-change-contents
and will-change-transform
to optimize an element that’s expected to change in the near future by instructing the browser to prepare the necessary animation before it actually begins.
<div class="overflow-auto will-change-scroll">
<!-- ... -->
</div>
建议你在元素更改之前应用这些工具,然后在它使用完 will-change-auto
后不久将其删除。
¥It’s recommended that you apply these utilities just before an element changes, and then remove it shortly after it finishes using will-change-auto
.
will-change 属性旨在作为处理已知性能问题时的最后手段。避免过多地使用这些工具,或者只是因为预期会出现性能问题,因为这实际上可能会导致页面性能下降。
¥The will-change property is intended to be used as a last resort when dealing with known performance problems. Avoid using these utilities too much, or simply in anticipation of performance issues, as it could actually cause the page to be less performant.
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:will-change-scroll
仅在 hover 时应用 will-change-scroll
工具。
<div class="will-change-auto hover:will-change-scroll">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:will-change-scroll
仅在中等屏幕尺寸及以上时应用 will-change-scroll
工具。
<div class="will-change-auto md:will-change-scroll">
<!-- ... -->
</div>
要了解更多信息,请查看有关 响应式设计、暗黑模式、以及 其他媒体查询修饰符 的文档。
¥Using custom values
¥Customizing your theme
默认情况下,Tailwind 提供四个 will-change
工具。你可以通过编辑 tailwind.config.js
文件中的 theme.willChange
或 theme.extend.willChange
来自定义这些值。
¥By default, Tailwind provides four will-change
utilities. You can customize these values by editing theme.willChange
or theme.extend.willChange
in your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
willChange: {
'left-top': 'left, top',
}
}
}
}
在 主题定制 文档中了解有关自定义默认主题的更多信息。
¥Learn more about customizing the default theme in the theme customization documentation.
¥Arbitrary values
如果你需要使用一次性的 will-change
值,而该值没有必要包含在你的主题中,请使用方括号动态生成属性,使用任意值。
<div class="will-change-[top,left]">
<!-- ... -->
</div>
在 任意值 文档中了解有关任意值支持的更多信息。