Yii2 Animate.css
Animate.css for Yii2
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist derekisbusy/yii2-animate "*"
or add
"derekisbusy/yii2-animate": "*"
to the require section of your composer.json
file.
Once the extension is installed, simply use it by adding it to your view :
use \derekisbusy\animate\AnimateAsset;
AnimateAsset::register($this);
or by adding to your another assets dependencies list :
public $depends = [
'derekisbusy\animate\AnimateAsset'
];