
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
@ant-design/css-animation
Advanced tools
@ant-design/css-animation is a utility library for handling CSS animations in JavaScript. It provides a simple API to start, stop, and manage CSS animations, making it easier to integrate animations into your web applications.
Start Animation
This feature allows you to start a CSS animation on a specified element. The 'fade-in' class is applied to the element, and a callback function is executed once the animation starts.
const cssAnimation = require('@ant-design/css-animation');
const element = document.getElementById('myElement');
cssAnimation(element, 'fade-in', () => {
console.log('Animation started');
});
Stop Animation
This feature allows you to stop a CSS animation on a specified element. The animation is halted immediately, and any ongoing animation effects are removed.
const cssAnimation = require('@ant-design/css-animation');
const element = document.getElementById('myElement');
cssAnimation.stop(element);
console.log('Animation stopped');
Event Listener for Animation End
This feature allows you to add an event listener that triggers a callback function when the CSS animation ends. This is useful for performing actions after the animation completes.
const cssAnimation = require('@ant-design/css-animation');
const element = document.getElementById('myElement');
cssAnimation(element, 'fade-in', () => {
console.log('Animation started');
cssAnimation.addEndListener(element, () => {
console.log('Animation ended');
});
});
animate.css is a popular library that provides a collection of ready-to-use, cross-browser animations for use in your web projects. Unlike @ant-design/css-animation, which focuses on managing animations programmatically, animate.css provides pre-defined CSS classes that you can apply directly to your elements.
animejs is a lightweight JavaScript animation library with a simple yet powerful API. It allows you to animate CSS properties, SVG, DOM attributes, and JavaScript objects. Compared to @ant-design/css-animation, animejs offers more flexibility and control over animations, including complex sequences and timelines.
make css animation easier
npm install
npm start
http://localhost:9001/examples/
online example: http://yiminghe.github.io/css-animation/
var anim = require('css-animation');
anim(el,animationName,function(){});
name | type | default | description |
---|---|---|---|
el | DOMElement | dom element to be animated | |
animationName | String|Object | will add animationName (if string) or animationName.name (if object) as class to el, then setTimeout 0 to add ${animationName}-active (if string) or animationName.active (if object) to el | |
callback | Function | triggered when anim caused by animationName is done |
npm test
npm run chrome-test
npm run coverage
open coverage/ dir
css-animation is released under the MIT license.
FAQs
css-animation
The npm package @ant-design/css-animation receives a total of 126,089 weekly downloads. As such, @ant-design/css-animation popularity was classified as popular.
We found that @ant-design/css-animation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.