New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

sass-spring

Package Overview
Dependencies
Maintainers
3
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sass-spring

pure CSS spring animations

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
3
Created
Source

sass-spring

CSS spring animations

Usage

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.

Testing

Local testing uses node-sass.

npm run test

Keywords

sass

FAQs

Package last updated on 07 Mar 2018

Did you know?

Socket

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.

Install

Related posts