Transition Propertyv1.2.0+
@include('_partials.class-table', [ 'scroll' => true, 'rows' => $page->config['theme']['transitionProperty']->map(function ($value, $name) { $class = $name === 'default' ? '.transition' : ".transition-{$name}"; $code = "transition-property: {$value};"; return [$class, $code]; }) ])
Usage
Use the transition-{properties}
utilities to specify which properties should transition when they change.
@component('_partials.code-sample', ['class' => 'bg-white text-center py-12'])
@slot('code')@endslot @endcomponentResponsive
To change which properties of an element transition at a specific breakpoint, add a {screen}:
prefix to any existing transition-property utility. For example, use md:transition-colors
to apply the transition-colors
utility at only medium screen sizes and above.
For more information about Tailwind's responsive design features, check out the Responsive Design documentation.
Customizing
Property values
By default Tailwind provides transition-property utilities for seven common property combinations. You change, add, or remove these by customizing the transitionProperty
section of your Tailwind theme config.
@component('_partials.customized-config', ['key' => 'theme.extend.transitionProperty'])
- 'height': 'height',
- 'spacing': 'margin, padding', @endcomponent
Learn more about customizing the default theme in the theme customization documentation.
@include('_partials.variants-and-disabling', [ 'utility' => [ 'name' => 'transition-property', 'property' => 'transitionProperty', ], 'variants' => [ 'responsive', ], ])