1. 过渡 & 动画
  2. 转场计时函数

Quick reference

Class
Properties
ease-lineartransition-timing-function: linear;
ease-intransition-timing-function: cubic-bezier(0.4, 0, 1, 1);
ease-outtransition-timing-function: cubic-bezier(0, 0, 0.2, 1);
ease-in-outtransition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

基本用法

¥Basic usage

控制宽松曲线

¥Controlling the easing curve

使用 ease-* 工具来控制元素的缓动曲线。

¥Use the ease-* utilities to control an element’s easing curve.

将鼠标悬停在每个按钮上即可查看预期的行为

ease-in

ease-out

ease-in-out

<button class="ease-in duration-300 ...">Button A</button>
<button class="ease-out duration-300 ...">Button B</button>
<button class="ease-in-out duration-300 ...">Button C</button>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:ease-in to only apply the ease-in utility on hover.

<div class="transition duration-150 ease-out hover:ease-in">
  <!-- ... -->
</div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:ease-in to apply the ease-in utility at only medium screen sizes and above.

<div class="transition duration-150 ease-out md:ease-in">
  <!-- ... -->
</div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.


使用自定义值

¥Using custom values

自定义主题

¥Customizing your theme

默认情况下,Tailwind 提供四个通用的转换计时函数工具。你可以通过编辑 tailwind.config.js 文件中的 theme.transitionTimingFunctiontheme.extend.transitionTimingFunction 来自定义这些值。

¥By default, Tailwind provides four general purpose transition-timing-function utilities. You can customize these values by editing theme.transitionTimingFunction or theme.extend.transitionTimingFunction in your tailwind.config.js file.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      transitionTimingFunction: {
        'in-expo': 'cubic-bezier(0.95, 0.05, 0.795, 0.035)',
        'out-expo': 'cubic-bezier(0.19, 1, 0.22, 1)',
      }
    }
  }
}

主题定制 文档中了解有关自定义默认主题的更多信息。

¥Learn more about customizing the default theme in the theme customization documentation.

任意值

¥Arbitrary values

If you need to use a one-off transition-timing-function value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.

<div class="ease-[cubic-bezier(0.95,0.05,0.795,0.035)]">
  <!-- ... -->
</div>

Learn more about arbitrary value support in the arbitrary values documentation.