
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
sass-spring
Advanced tools
CSS spring animations
npm install --save sass-spring
// import the animation-tools file from sass-spring as your setup allows
@import "../node_modules/sass-spring/src/animation-tools";
// define functions calculating values for each property you want to animate
@function generate-property-value($value) {
// return the computed value of a single css property
@return $value;
}
// include create-spring with a name to reference it by, a map of properties to
// functions calculating values, and some options
// an optional final parameter specifies the time in seconds per frame to lower
// css bloat; defaults to 1 / 60. Avoid making this higher than 1 / 10
@include create-spring(spring-name, (
property-name: generate-property-value,
// the options parameters are the same as framer's default spring curve
), spring-options(250, 25, 0));
.selector {
// include use-spring to generate the appropriate animation-* properties
// make sure you run your css through autoprefixer or an equivalent tool if
// you need vendor prefixes
@include use-spring(spring-name);
}
See the demos for more complex and real world usage. Build demos with
npm run build and open each demo's html file. Run npm run watch to auto
compile changes to demos.
Compiled demos are available on CodePen.
Local testing uses node-sass.
npm run test
FAQs
pure CSS spring animations
We found that sass-spring demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.