Animation in KioSign
There are a number of ways to animate content in KioSign.
Animate CSS Library
Already added to KioSign… use simple css classes to animate elements. More about the classes at daneden.github.io/animate.css.
Javascript
Since you can add your own custom JS scripts, vanilla JS or jQuery can be used to animate content.
(function($) {
setTimeout(function() {
$("#sample").removeClass("bg-color1").addClass("bg-color2");
})( jQuery );