
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
postcss-animations
Advanced tools
PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css, mimic.css
PostCSS plugin that adds @keyframes
from:
yarn add -D postcss-animations
# and the animation data set you need
yarn add -D postcss-animation.css-data postcss-magic.css-data postcss-mimic.css-data postcss-tuesday.css-data
Input:
:root {
--fade-in-animation-name: tdFadeOut; /* add css variables support (Disabled default) */
}
.tdFadeIn {
animation-name: tdFadeIn;
}
.tdFadeOut {
animation-name: var(--fade-in-animation-name); /* or css variables */
}
Output:
:root {
--fade-in-animation-name: tdFadeOut;
}
.tdFadeIn {
animation-name: tdFadeIn;
}
.tdFadeOut {
animation-name: var(--fade-in-animation-name);
}
@keyframes tdFadeIn {
/* ... */
}
@keyframes tdFadeOut {
/* will be added if 'disableCheckCssVariables: false' */
/* ... */
}
const fs = require("fs");
const postcss = require("postcss");
const postcssAnimations = require("postcss-animations");
const [from, to] = ["./src/style.css", "./dist/style.css"];
const CSS = fs.readFileSync(from);
const PLUGINS = [
postcssAnimations({
data: [
require("postcss-animation.css-data"),
require("postcss-magic.css-data"),
require("postcss-mimic.css-data"),
require("postcss-tuesday.css-data"),
],
checkDuplications: true,
disableCheckCssVariables: true,
}),
];
(async () => {
try {
const { css, messages } = await postcss(PLUGINS).process(CSS, { from, to });
messages
.filter(({ type }) => type === "warning")
.map((msg) => console.log(msg.toString()));
console.log(css);
fs.writeFileSync(to, css);
} catch (e) {
console.error(e);
}
})();
data: Array<{[animationName: string]: string}> | {[animationName: string]: string}
data
is a simple object where:
key
: animation namevalue
: css code of animation// Plain object
const data = {
myAnimationName: `@keyframes myAnimationName { 0%{opacity:1;} 100%{opacity:0;} }`,
};
// or Array
const data = [
{
myAnimationName: `@keyframes myAnimationName { 0%{opacity:1;} 100%{opacity:0;} }`,
},
require("postcss-animation.css-data"),
];
disableCheckCssVariables: boolean
Disable checking and search variables css var(--name)
(default: true
)
checkDuplications: boolean
Display a warning if find duplicate name of the animation (default: true
)
const {
css: parseFromCss,
files: parseFromFile,
} = require("css-parse-keyframes");
postcss([
require("postcss-animations")({
data: [
// your Generated code
parseFromCss(
"@keyframes scale-up-center {0% { transform: scale(0.5); } 100% { transform: scale(1); }}"
),
// or saved
parseFromFile("./animista-demo.css"),
parseFromFile(["./animista-text.css", "./animista-base.css"]),
],
}),
]);
8.0.0
10.0.0
FAQs
PostCSS plugin that adds `@keyframes` from animate.css, tuesday.css, magic.css, mimic.css
The npm package postcss-animations receives a total of 27 weekly downloads. As such, postcss-animations popularity was classified as not popular.
We found that postcss-animations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.