Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@shoelace-style/animations
Advanced tools
Your favorite animate.css effects available as ES modules for use with the Web Animations API.
Your favorite animate.css effects available as ES modules for use with the Web Animations API.
This module was built for Shoelace, but it works well as a stand-alone library too!
npm install @shoelace-style/animations
Importing all animations:
import * as animations from '@shoelace-style/animations';
Importing individual animations:
import { bounce } from '@shoelace-style/animations';
Importing easings:
import { easings } from '@shoelace-style/animations';
Animating an element:
<div style="display: block; width: 100px; height: 100px; background: tomato; margin: 2rem;"></div>
<script type="module">
import { easings, flip } from 'https://cdn.jsdelivr.net/npm/@shoelace-style/animations@1/dist/index.js';
const box = document.querySelector('div');
box.animate(flip, {
duration: 1500,
iterations: Infinity,
easing: easings.easeInSine
});
</script>
This example uses the jsDelivr CDN. To import the library locally, install it and make node_modules/@shoelace-style/animations/dist
available to your app or bundler.
This script parses all animation stylesheets found in node_modules/animate.css
and generates keyframe objects that you can use with the Web Animations API. As animations are tweaked and added to animate.css, the keyframes herein will be kept in sync when rerunning the script.
To build the project, run:
npm run build
This will purge and rebuild the dist
directory.
Please report all bugs and suggestions to the issue tracker.
1.2.0
FAQs
Your favorite animate.css effects available as ES modules for use with the Web Animations API.
The npm package @shoelace-style/animations receives a total of 25,254 weekly downloads. As such, @shoelace-style/animations popularity was classified as popular.
We found that @shoelace-style/animations demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.