Adds animation to fields. You can find list of animation here https://daneden.github.io/animate.css/
$pdocrud = new PDOCrud();
$pdocrud->addPlugin("animate");//to add plugin animate
echo $pdocrud->dbTable("users")->render("insertform"); // insert form
//lets call animate plugin to all input type text, you can specify .class or
#id also there.
//You can find list of animation here https://daneden.github.io/animate.css/
echo $pdocrud->loadPluginJsCode("animate","input[type=text]", array("rubberBand delay-2s infinite"));