biofriction-wp-theme/node_modules/motion-ui
jorge-vitrubio a7910c81a8 moved to new repo 2021-10-26 14:18:09 +02:00
..
dist moved to new repo 2021-10-26 14:18:09 +02:00
docs moved to new repo 2021-10-26 14:18:09 +02:00
lib moved to new repo 2021-10-26 14:18:09 +02:00
src moved to new repo 2021-10-26 14:18:09 +02:00
.scss-lint.yml moved to new repo 2021-10-26 14:18:09 +02:00
.travis.yml moved to new repo 2021-10-26 14:18:09 +02:00
.versions moved to new repo 2021-10-26 14:18:09 +02:00
CHANGELOG.md moved to new repo 2021-10-26 14:18:09 +02:00
LICENSE moved to new repo 2021-10-26 14:18:09 +02:00
README.md moved to new repo 2021-10-26 14:18:09 +02:00
bower.json moved to new repo 2021-10-26 14:18:09 +02:00
composer.json moved to new repo 2021-10-26 14:18:09 +02:00
gulpfile.js moved to new repo 2021-10-26 14:18:09 +02:00
meteor-README.md moved to new repo 2021-10-26 14:18:09 +02:00
motion-ui.js moved to new repo 2021-10-26 14:18:09 +02:00
motion-ui.scss moved to new repo 2021-10-26 14:18:09 +02:00
package.js moved to new repo 2021-10-26 14:18:09 +02:00
package.json moved to new repo 2021-10-26 14:18:09 +02:00
yarn.lock moved to new repo 2021-10-26 14:18:09 +02:00

README.md

Motion UI

   

Install | Demo | Documentation | Releases


Build Status CDNJS dependencies Status devDependencies Status

💎 The powerful Sass library for creating CSS transitions and animations. Originally integrated into Foundation for Apps, the code is now a standalone library, used by Foundation for Sites and Foundation for Apps. Made by your friends at ZURB.

Installation

Install Motion UI with npm or Bower.

npm install motion-ui --save
bower install motion-ui --save

Then to build with Sass (Autoprefixer is required):

// Add the load path "[modules_folder]/motion-ui/src" to your Sass configuration
@import 'motion-ui';

@include motion-ui-transitions;
@include motion-ui-animations;

Autoprefixer is required for the Sass installation as Motion UI uses unprefixed transition and animation properties. We recommend you to install PostCSS and Autoprefixer.

Or to use the equivalent pre-compiled CSS, import the Motion UI standalone CSS file dist/motion-ui.css or dist/motion-ui.min.css.

To easily transition elements in and out using Motion UI classes, import the Motion UI JavaScript library dist/motion-ui.js or dist/motion-ui.min.js.

See the full installation instructions

Demos

View live demos on the ZURB Playground.

Documentation

View the documentation here.

Develop Locally

git clone https://github.com/zurb/motion-ui
cd motion-ui
npm install
  • Run npm start to compile test Sass/JS files, and to build the documentation. To make changes to the documentation, edit the files under docs/src.
  • Run npm test to run the unit tests.
  • Run npm start dist to compile distribution files.