formAnimation

0.0.1 • Public • Published

jQuery Form Animation Plugin - Form Animation: when form validation <3 animate.css

The jQuery Form Animation Plugin provides drop-in animation for your existing forms, while making all kinds of customizations to fit your application really easy.

Screenshot

Screenshot

Getting Started

Downloading the required libraries

jQuery can be downloaded from https://jquery.com/

jQuery Validation Plugin can be downloaded from http://jqueryvalidation.org/

Including it on your page

Include jQuery and the plugin on a page. Then select a form to add animation and call the formAnimation method.

<form>
    <input required>
</form>
<script src="jquery.js"></script>
<script src="jquery.validate.js"></script>
<script src="formAnimation.js"></script>
<script>
$("form").formAnimation({ animatedClass: 'shake' });
</script> 

Alternatively include jQuery and the plugin via requirejs in your module.

define(["jquery", "jquery.validate", "formAnimation"], function( $ ) {
    $("form").formAnimation({ animatedClass: 'shake' });
});

Reporting issues and contributing code

Bug reports and pull requests are welcome on GitHub at https://github.com/nnluukhtn/formAnimation.

License

Copyright © Luu Nguyen
Licensed under the MIT license.

Package Sidebar

Install

npm i formAnimation

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • nnluukhtn