Package Exports
- manny
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (manny) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Manny
npm package for importing @mannynotfound into your website.
Live Demo
https://mannynotfound.glitch.me/
Usage
As a module
npm install mannyimport Manny from 'manny';
const manny = new Manny({
container: '#container', // dom selector, defaults to body
});
// do specific action on loop
manny.do('bellydance');
// do all actions on loop
manny.doTheMost();As a library
<html>
<head></head>
<body>
<div id="container"></div>
<script src="https://cdn.jsdelivr.net/npm/manny/lib/manny.js" type="text/javascript"></script>
<script>
var manny = new Manny({ container: '#container' });
manny.doTheMost();
</script>
</body>
</html>Actions
manny is using the mixamo rig and will work with any animation in their library. by default, the manny
package comes with wave, bellydance and samba.
Running Locally
npm run devGo to localhost:8080 to see the local test application.