Usage
I am a...
<ul id="js-rotating">
<li>So Simple</li>
<li>Very Doge</li>
<li>Much Wow</li>
<li>Such Cool</li>
</ul>
...child object rotator.
4. Initiate and customise (JS):
$("#js-rotating").Morphist({
// The entrance animation type (In).
animateIn: "tada",
// The exit animation type (Out). Refer to Animate.css for a list of available animations.
animateOut: "bounceOut",
// The delay between the changing of each object in milliseconds.
speed: 2000,
complete: function () {
// Called after the entrance animation is executed.
}
});