Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tailwindcss-animation-delay

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss-animation-delay - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

1

index.js

@@ -16,2 +16,3 @@ const plugin = require('tailwindcss/plugin')

animationDelay: {
'none': '0s',
75: '75ms',

@@ -18,0 +19,0 @@ 100: '100ms',

2

package.json
{
"name": "tailwindcss-animation-delay",
"version": "1.0.6",
"version": "1.0.7",
"description": "Tailwind CSS plugin, add animation-delay CSS property.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,3 +9,3 @@ # tailwindcss-animation-delay

```
```sh
# Using npm

@@ -20,3 +20,3 @@ npm install tailwindcss-animation-delay

```
```js
// tailwind.config.js

@@ -28,6 +28,6 @@ module.exports = {

plugins: [
require('tailwindcss-animation-delay'),
require("tailwindcss-animation-delay"),
// ...
],
}
};
```

@@ -37,4 +37,13 @@

`animation-delay-{n}` class to specifies the amount of time to wait from applying the animation to an element before beginning to perform the animation.
```html
<svg class="animate-bounce animation-delay-300 w-6 h-6 ...">
<!-- ... -->
</svg>
```
| Class | Properties |
| -------------------- | ------------------------ |
| animation-delay-none | animation-delay: 0s; |
| animation-delay-75 | animation-delay: 75ms; |

@@ -70,3 +79,3 @@ | animation-delay-100 | animation-delay: 100ms; |

```
```js
// tailwind.config.js

@@ -76,12 +85,12 @@ module.exports = {

animationDelay: {
100: '100ms',
200: '200ms',
300: '300ms',
400: '400ms',
}
100: "100ms",
200: "200ms",
300: "300ms",
400: "400ms",
},
},
variants: {
animationDelay: ['responsive', 'hover']
}
}
animationDelay: ["responsive", "hover"],
},
};
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc