Meteor Template Animation Helper

screenshot of Meteor Template Animation Helper

A Meteor package which allows to animate/fade templates in and out

Overview

The Template Animation Helper package allows for easy animation of templates in a Meteor application. It allows templates to wait for animations to finish on elements with the "animate" class, and then removes the class to start the CSS transition. When the template is removed, the animate class is re-added to animate the elements back to their original state. By default, it uses the Session object to render templates at the position of the {{> AnimateTemplate}} helper, but it can also utilize the View class from the view-manager package if available.

Features

  • Animation of templates
  • Wait for animations to finish on elements with the "animate" class
  • Start CSS transitions by removing the animate class
  • Re-add animate class to animate elements back to original state when template is removed
  • Use Session or View to render templates at the position of the helper

Summary

The Template Animation Helper package allows for easy animation of templates in a Meteor application. It provides a convenient way to wait for animations to finish on elements with the "animate" class, and then remove the class to start the CSS transition. With options to use either the Session or View class for rendering templates, it offers flexibility in integrating animation effects into a Meteor project.