# postcss-prefixer-keyframes

> PostCSS plugin to prefix keyframes

Latest version **0.0.3** (published 2017-03-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-prefixer-keyframes
pnpm add postcss-prefixer-keyframes
yarn add postcss-prefixer-keyframes
bun add postcss-prefixer-keyframes
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2017-03-07 |
| First published | 2016-05-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+6 in 1 direct dependencies) |
| Install scripts | no |
| Author | Michael Herbst |
| Maintainers | michiherbst, nsams |
| Keywords | postcss, css, postcss-plugin, prefix, keyframes |

## Links

- npm: https://www.npmjs.com/package/postcss-prefixer-keyframes
- npm.io page: https://npm.io/package/postcss-prefixer-keyframes

## Dependencies (1)

- [postcss](https://npm.io/package/postcss.md) ^5.0.10

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2017-03-07
- 0.0.1 — 2016-05-18

## README

# PostCSS Prefixer Keyframes

[PostCSS] plugin to prefix keyframes.

[PostCSS]: https://github.com/postcss/postcss

```css
/* Input example */
@keyframes mymove {
  from {top: 0px;}
  to {top: 200px;}
}

div {
  width: 100px;
  background: red;
  position: relative;
  animation: mymove 5s infinite;
}

a {
  color: green;
  position: relative;
  animation: externalanimation 5s infinite;
}
```

```css
/* Output example */
@keyframes myWebsite-mymove {
    from {top: 0px;}
    to {top: 200px;}
}

div {
    width: 100px;
    background: red;
    position: relative;
    animation: myWebsite-mymove 5s infinite;
}

a {
    color: green;
    position: relative;
    animation: externalanimation 5s infinite;
}
```

## Usage

```js
var prefix = require('postcss-prefixer-keyframes');
postcss([ prefix({prefix: 'myWebsite-'}) ])
```

See [PostCSS] docs for examples for your environment.

---
_Source: https://npm.io/package/postcss-prefixer-keyframes · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
