@akocan98/out-click-for-tailwind
v1.0.5
Published
Utility classes for 'out-click' effect
Downloads
15
Maintainers
Readme
Out-click for Tailwind
This is a plugin for Tailwind which introduces a configurable 'out-click' animation.
It's really difficult to neatly specify different duration timings for different CSS properties with Tailwind, but that's what is needed for this effect. Instead of adding custom CSS to the project I decided to wrap this into a plugin so that you can rely on Tailwind to purge out unused classes, easily extend them and benefit from all the support Tailwind has integrated into most IDE's.
This is the what the effect looks like:
Usage
Include the plugin in tailwind.config.js
const outclick = require('@akocan98/out-click-for-tailwind');
module.exports = {
// ...
plugins: [
outclick,
//...
],
};
Minimal example
<div class="out-click-200">
Hello World
</div>
Different colored out-click effect
You can tweak the colors of the out-click effect by specifying the active:bg-color
and active:outline-color
utility classes (or through other means, if necessary).
An example of this:
<div class="out-click-200 active:bg-red-400/10 active:outline-red-400/10">
Hello, world
</div>
Adding an additional variation
You can add additional variations to specify your own transition durations. They are specified in tailwind.config.js
, as such:
const outClick = require('@akocan98/out-click-for-tailwind');
module.exports = {
theme: {
extend: {
outClick: {
999: {
background: '333ms',
outline: '666ms',
},
123: {
background: '123ms',
outline: '321ms',
}
}
}
},
plugins: [outClick],
// ...
}
this will generate additional utility classes (if they are also used in your markup):
<div class="out-click-999">
Hello, world
</div>
<div class="out-click-321">
Hello, world
</div>
As expected, you can use all of the generated utility classes in your CSS as well
// ...
@tailwind components;
@layer components {
.red-out-click {
@apply out-click-200 active:bg-red-300 active:outline-red-300;
}
}
// ...
Example of different colours for light and dark mode:
<div class="out-click-200 active:bg-red-400/10 active:outline-red-400/10 dark:active:bg-purple-400/10 dark:active:outline-purple-400/10">
Hello, world
</div>
Full example (Tailwind CSS & React.js)
<>
<div className={'p-20 bg-white dark:bg-black'}>
<div
className={
'w-14 h-14 rounded-full out-click-200 active:bg-gray-300 dark:active:bg-white/20 active:outline-gray-300 dark:active:outline-white/20 flex justify-center items-center cursor-pointer'
}>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke="white"
stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M13 5l7 7-7 7M5 5l7 7-7 7" />
</svg>
</div>
</div>
</>