New bespoke plugin compatible with latest bespoke.js
npm install bespoke-fxNew bespoke plugin compatible with latest bespoke.js
Download the [production version][min] or the [development version][max], or use a package manager.
[min]: https://raw.github.com/developerworks/bespoke-fx/master/dist/bespoke-fx.min.js
[max]: https://raw.github.com/developerworks/bespoke-fx/master/dist/bespoke-fx.js
This plugin is shipped in a UMD format, meaning that it is available as a CommonJS/AMD module or browser global.
For example, when using CommonJS modules:
``js
var bespoke = require('bespoke'),
fx = require('bespoke-fx');
bespoke.from('#presentation', [
fx()
]);
`
When using browser globals:
`js`
bespoke.from('#presentation', [
bespoke.plugins.fx()
]);
`bash``
$ npm install bespoke-fx
This plugin was built with generator-bespokeplugin.