@nx-js/animate-middleware

1.0.1 • Public • Published

The animate middleware

The animate middleware allows you to create entering, leaving and moving animations with a few custom attributes.

  • name: animate
  • direct middleware dependencies: attributes
  • all middleware dependencies: observe, attributes
  • type: component or content middleware
  • ignores: text nodes
  • docs

Installation

npm install @nx-js/animate-middleware

Usage

const component = require('@nx-js/core')
const observe = require('@nx-js/observe-middleware')
const attributes = require('@nx-js/attributes-middleware')
const animate = require('@nx-js/animate-middleware')

component()
  .useOnContent(observe)
  .useOnContent(attributes)
  .useOnContent(animate)
  .register('animated-comp')
<animated-comp @if="show">
  <span enter-animation="fadeIn 1s">Hello World!</span>
</animated-comp>

Readme

Keywords

Package Sidebar

Install

npm i @nx-js/animate-middleware

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • solkimicreb